describeLaunchConfigurations

Gets information about the launch configurations in the account and Region.

Samples


fun main() { 
   //sampleStart 
   // This example describes the specified launch configuration.
val resp = autoScalingClient.describeLaunchConfigurations {
    launchConfigurationNames = listOf<String>(
        "my-launch-config"
    )
} 
   //sampleEnd
}