describeTaskSets
Describes the task sets in the specified cluster and service. This is used when a service uses the EXTERNAL
deployment controller type. For more information, see Amazon ECS Deployment Types in the Amazon Elastic Container Service Developer Guide.
Samples
fun main() {
//sampleStart
// This example describes a task set in service MyService that uses an EXTERNAL deployment controller.
val resp = ecsClient.describeTaskSets {
cluster = "MyCluster"
service = "MyService"
taskSets = listOf<String>(
"arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789"
)
}
//sampleEnd
}