describeServiceDeployments

Describes one or more of your service deployments.

A service deployment happens when you release a software update for the service. For more information, see View service history using Amazon ECS service deployments.

Samples


fun main() { 
   //sampleStart 
   // This example describes a service deployment for the service sd example in the example cluster.
val resp = ecsClient.describeServiceDeployments {
    serviceDeploymentArns = listOf<String>(
        "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5"
    )
} 
   //sampleEnd
}