CloudWatchLogs / Client / list_sources_for_s3_table_integration

list_sources_for_s3_table_integration

CloudWatchLogs.Client.list_sources_for_s3_table_integration(**kwargs)

Returns a list of data source associations for a specified S3 Table Integration, showing which data sources are currently associated for query access.

See also: AWS API Documentation

Request Syntax

response = client.list_sources_for_s3_table_integration(
    integrationArn='string',
    maxResults=123,
    nextToken='string'
)
Parameters:
  • integrationArn (string) –

    [REQUIRED]

    The Amazon Resource Name (ARN) of the S3 Table Integration to list associations for.

  • maxResults (integer) – The maximum number of associations to return in a single call. Valid range is 1 to 100.

  • nextToken (string) – The token for the next set of items to return. The token expires after 24 hours.

Return type:

dict

Returns:

Response Syntax

{
    'sources': [
        {
            'identifier': 'string',
            'dataSource': {
                'name': 'string',
                'type': 'string'
            },
            'status': 'ACTIVE'|'UNHEALTHY'|'FAILED'|'DATA_SOURCE_DELETE_IN_PROGRESS',
            'statusReason': 'string',
            'createdTimeStamp': 123
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • sources (list) –

      The list of data source associations for the specified S3 Table Integration.

      • (dict) –

        Represents a data source association with an S3 Table Integration, including its status and metadata.

        • identifier (string) –

          The unique identifier for this data source association.

        • dataSource (dict) –

          The data source associated with the S3 Table Integration.

          • name (string) –

            The name of the data source.

          • type (string) –

            The type of the data source.

        • status (string) –

          The current status of the data source association.

        • statusReason (string) –

          Additional information about the status of the data source association.

        • createdTimeStamp (integer) –

          The timestamp when the data source association was created.

    • nextToken (string) –

      The token for the next set of items to return. The token expires after 24 hours.

Exceptions

  • CloudWatchLogs.Client.exceptions.AccessDeniedException

  • CloudWatchLogs.Client.exceptions.ResourceNotFoundException

  • CloudWatchLogs.Client.exceptions.ThrottlingException

  • CloudWatchLogs.Client.exceptions.ValidationException

  • CloudWatchLogs.Client.exceptions.InternalServerException