describeServices

Describes the specified services running in your cluster.

Samples


fun main() { 
   //sampleStart 
   // This example provides descriptive information about the service named ecs simple service
val resp = ecsClient.describeServices {
    services = listOf<String>(
        "ecs-simple-service"
    )
} 
   //sampleEnd
}