Amazon CloudWatch Logs

2026/04/27 - Amazon CloudWatch Logs - 1 updated api methods

Changes  Adds support for selecting all logs sources and types in a single association.

ListSourcesForS3TableIntegration (updated) Link ΒΆ
Changes (response)
{'sources': {'parentSourceIdentifier': 'string'}}

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

client.list_sources_for_s3_table_integration(
    integrationArn='string',
    maxResults=123,
    nextToken='string'
)
type integrationArn:

string

param integrationArn:

[REQUIRED]

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

type maxResults:

integer

param maxResults:

The maximum number of associations to return in a single call. Valid range is 1 to 100.

type nextToken:

string

param nextToken:

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

rtype:

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,
            'parentSourceIdentifier': 'string'
        },
    ],
    '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.

        • parentSourceIdentifier (string) --

          The identifier of the parent data source for this association.

    • nextToken (string) --

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