CloudWatchLogs / Paginator / ListSourcesForS3TableIntegration

ListSourcesForS3TableIntegration

class CloudWatchLogs.Paginator.ListSourcesForS3TableIntegration
paginator = client.get_paginator('list_sources_for_s3_table_integration')
paginate(**kwargs)

Creates an iterator that will paginate through responses from CloudWatchLogs.Client.list_sources_for_s3_table_integration().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    integrationArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • integrationArn (string) –

    [REQUIRED]

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

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

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) –

      A token to resume pagination.