ACM / Client / list_acme_accounts

list_acme_accounts

ACM.Client.list_acme_accounts(**kwargs)

Retrieves a list of ACME accounts registered with the specified ACME endpoint. ACME accounts are created when clients use external account binding credentials to register.

See also: AWS API Documentation

Request Syntax

response = client.list_acme_accounts(
    NextToken='string',
    MaxResults=123,
    AcmeEndpointArn='string'
)
Parameters:
  • NextToken (string) – A token for pagination.

  • MaxResults (integer) – The maximum number of results to return.

  • AcmeEndpointArn (string) –

    [REQUIRED]

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

Return type:

dict

Returns:

Response Syntax

{
    'AcmeAccounts': [
        {
            'AccountUrl': 'string',
            'PublicKeyThumbprint': 'string',
            'Status': 'VALID'|'DEACTIVATED'|'REVOKED',
            'CreatedAt': datetime(2015, 1, 1),
            'AcmeExternalAccountBindingArn': 'string',
            'Contacts': [
                'string',
            ]
        },
    ],
    'NextToken': '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) –

    • NextToken (string) –

      A token for pagination.

Exceptions

  • ACM.Client.exceptions.InternalServerException

  • ACM.Client.exceptions.AccessDeniedException

  • ACM.Client.exceptions.ValidationException

  • ACM.Client.exceptions.ResourceNotFoundException

  • ACM.Client.exceptions.ThrottlingException