List Sources For S3 Table Integration
| cloudwatchlogs_list_sources_for_s3_table_integration | R Documentation |
Returns a list of data source associations for a specified S3 Table Integration, showing which data sources are currently associated for query access¶
Description¶
Returns a list of data source associations for a specified S3 Table Integration, showing which data sources are currently associated for query access.
Usage¶
cloudwatchlogs_list_sources_for_s3_table_integration(integrationArn,
maxResults, nextToken)
Arguments¶
integrationArn |
[required] The Amazon Resource Name (ARN) of the S3 Table Integration to list associations for. |
maxResults |
The maximum number of associations to return in a single call. Valid range is 1 to 100. |
nextToken |
The token for the next set of items to return. The token expires after 24 hours. |
Value¶
A list with the following syntax:
list(
sources = list(
list(
identifier = "string",
dataSource = list(
name = "string",
type = "string"
),
status = "ACTIVE"|"UNHEALTHY"|"FAILED"|"DATA_SOURCE_DELETE_IN_PROGRESS",
statusReason = "string",
createdTimeStamp = 123,
parentSourceIdentifier = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_sources_for_s3_table_integration(
integrationArn = "string",
maxResults = 123,
nextToken = "string"
)