describeApplicationStatusCheckAssociations

Describes the associations for one or more application status checks. For more information, see Application status checks. To avoid timeouts and retrieve complete results, use the pagination parameters.

The order of the elements in the response, including those within nested structures, might vary.

Samples

// This example describes instance ID associations for the specified application status check.
val resp = ec2Client.describeApplicationStatusCheckAssociations {
    applicationStatusCheckIds = listOf<String>(
        "asc-0123456789abcdef0"
    )
    filters = listOf<Filter>(
        Filter {
            name = "association-type"
            values = listOf<String>(
                "instance-id"
            )
        }            
    )
}