describeDaemonDeployments
abstract suspend fun describeDaemonDeployments(input: DescribeDaemonDeploymentsRequest): DescribeDaemonDeploymentsResponse
Describes one or more of your daemon deployments.
A daemon deployment orchestrates the progressive rollout of daemon task updates across container instances managed by the daemon's capacity providers. Each deployment includes circuit breaker and alarm-based rollback capabilities.
Samples
fun main() {
//sampleStart
// This example describes a daemon deployment for the my monitoring daemon daemon.
val resp = ecsClient.describeDaemonDeployments {
daemonDeploymentArns = listOf<String>(
"arn:aws:ecs:us-east-1:123456789012:daemon-deployment/my-cluster/my-monitoring-daemon/aB1cD2eF3gH4iJ5k"
)
}
//sampleEnd
}