List Integrations
cloudwatchlogs_list_integrations | R Documentation |
Returns a list of integrations between CloudWatch Logs and other services in this account¶
Description¶
Returns a list of integrations between CloudWatch Logs and other services in this account. Currently, only one integration can be created in an account, and this integration must be with OpenSearch Service.
Usage¶
cloudwatchlogs_list_integrations(integrationNamePrefix, integrationType,
integrationStatus)
Arguments¶
integrationNamePrefix |
To limit the results to integrations that start with a certain name prefix, specify that name prefix here. |
integrationType |
To limit the results to integrations of a certain type, specify that type here. |
integrationStatus |
To limit the results to integrations with a certain status, specify that status here. |
Value¶
A list with the following syntax:
list(
integrationSummaries = list(
list(
integrationName = "string",
integrationType = "OPENSEARCH",
integrationStatus = "PROVISIONING"|"ACTIVE"|"FAILED"
)
)
)
Request syntax¶
svc$list_integrations(
integrationNamePrefix = "string",
integrationType = "OPENSEARCH",
integrationStatus = "PROVISIONING"|"ACTIVE"|"FAILED"
)