describeServices
Describes the specified services running in your cluster.
Samples
// This example provides descriptive information about the service named ecs simple service
val resp = ecsClient.describeServices {
services = listOf<String>(
"ecs-simple-service"
)
}Content copied to clipboard
// This example provides descriptive information about the service ecs service with pause hook which is
// configured with a pause lifecycle hook in its deployment configuration.
val resp = ecsClient.describeServices {
services = listOf<String>(
"ecs-service-with-pause-hook"
)
}Content copied to clipboard