listDaemonTaskDefinitions

abstract suspend fun listDaemonTaskDefinitions(input: ListDaemonTaskDefinitionsRequest = ListDaemonTaskDefinitionsRequest { }): ListDaemonTaskDefinitionsResponse

Returns a list of daemon task definitions that are registered to your account. You can filter the results by family name, status, or both to find daemon task definitions that match your criteria.

Samples


fun main() { 
   //sampleStart 
   // This example lists all daemon task definitions in your account that start with the monitoring
// prefix.
val resp = ecsClient.listDaemonTaskDefinitions {
    familyPrefix = "monitoring"
} 
   //sampleEnd
}