describeDaemonTaskDefinition
abstract suspend fun describeDaemonTaskDefinition(input: DescribeDaemonTaskDefinitionRequest): DescribeDaemonTaskDefinitionResponse
Describes a daemon task definition. You can specify a family and revision to find information about a specific daemon task definition, or you can simply specify the family to find the latest ACTIVE revision in that family.
Samples
fun main() {
//sampleStart
// This example describes the first revision of the monitoring agent daemon task definition.
val resp = ecsClient.describeDaemonTaskDefinition {
daemonTaskDefinition = "monitoring-agent:1"
}
//sampleEnd
}