ACM / Paginator / ListAcmeAccounts

ListAcmeAccounts

class ACM.Paginator.ListAcmeAccounts
paginator = client.get_paginator('list_acme_accounts')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ACM.Client.list_acme_accounts().

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

    The Amazon Resource Name (ARN) of the ACME endpoint.

  • 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

{
    'AcmeAccounts': [
        {
            'AccountUrl': 'string',
            'PublicKeyThumbprint': 'string',
            'Status': 'VALID'|'DEACTIVATED'|'REVOKED',
            'CreatedAt': datetime(2015, 1, 1),
            'AcmeExternalAccountBindingArn': 'string',
            'Contacts': [
                'string',
            ]
        },
    ],

}

Response Structure

  • (dict) –

    • AcmeAccounts (list) –

      The list of ACME accounts.

      • (dict) –

        Contains summary information about an ACME account.

        • AccountUrl (string) –

          The URL of the ACME account.

        • PublicKeyThumbprint (string) –

          The thumbprint of the public key associated with the ACME account.

        • Status (string) –

          The status of the ACME account.

        • CreatedAt (datetime) –

          The time at which the ACME account was created.

        • AcmeExternalAccountBindingArn (string) –

          The Amazon Resource Name (ARN) of the external account binding associated with this ACME account.

        • Contacts (list) –

          The contact information for the ACME account.

          • (string) –