describeClusters

Describes one or more of your clusters.

For CLI examples, see describe-clusters.rst on GitHub.

Samples


fun main() { 
   //sampleStart 
   // This example provides a description of the specified cluster in your default region.
val resp = ecsClient.describeClusters {
    clusters = listOf<String>(
        "default"
    )
} 
   //sampleEnd
}