listIntegrations

abstract suspend fun listIntegrations(input: ListIntegrationsRequest = ListIntegrationsRequest { }): ListIntegrationsResponse

Lists the integrations in the account, optionally filtered by type, status, or name. Results are paginated.

Samples

// The following example lists up to 20 AWS_INTEGRATION integrations in the account. Payloads are shown
// as JSON on the wire they are CBOR encoded.
val resp = cloudWatchOmniClient.listIntegrations {
    integrationType = IntegrationType.fromValue("AWS_INTEGRATION")
    maxResults = 20
}