SES / Paginator / ListConfigurationSets

ListConfigurationSets#

class SES.Paginator.ListConfigurationSets#
paginator = client.get_paginator('list_configuration_sets')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from SES.Client.list_configuration_sets().

See also: AWS API Documentation

Request Syntax

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

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

{
    'ConfigurationSets': [
        {
            'Name': 'string'
        },
    ],

}

Response Structure

  • (dict) –

    A list of configuration sets associated with your Amazon Web Services account. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

    • ConfigurationSets (list) –

      A list of configuration sets.

      • (dict) –

        The name of the configuration set.

        Configuration sets let you create groups of rules that you can apply to the emails you send using Amazon SES. For more information about using configuration sets, see Using Amazon SES Configuration Sets in the Amazon SES Developer Guide.

        • Name (string) –

          The name of the configuration set. The name must meet the following requirements:

          • Contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

          • Contain 64 characters or fewer.