ACM / Client / list_acme_external_account_bindings

list_acme_external_account_bindings

ACM.Client.list_acme_external_account_bindings(**kwargs)

Retrieves a list of external account bindings for the specified ACME endpoint.

See also: AWS API Documentation

Request Syntax

response = client.list_acme_external_account_bindings(
    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

{
    'ExternalAccountBindings': [
        {
            'AcmeExternalAccountBindingArn': 'string',
            'AcmeEndpointArn': 'string',
            'RoleArn': 'string',
            'ExpiresAt': datetime(2015, 1, 1),
            'RevokedAt': datetime(2015, 1, 1),
            'LastUsedAt': datetime(2015, 1, 1),
            'CreatedAt': datetime(2015, 1, 1),
            'UpdatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • ExternalAccountBindings (list) –

      The list of external account bindings.

      • (dict) –

        Contains summary information about an ACME external account binding.

        • AcmeExternalAccountBindingArn (string) –

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

        • AcmeEndpointArn (string) –

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

        • RoleArn (string) –

          The Amazon Resource Name (ARN) of the IAM role associated with the external account binding.

        • ExpiresAt (datetime) –

          The time at which the external account binding expires.

        • RevokedAt (datetime) –

          The time at which the external account binding was revoked.

        • LastUsedAt (datetime) –

          The time at which the external account binding was last used.

        • CreatedAt (datetime) –

          The time at which the external account binding was created.

        • UpdatedAt (datetime) –

          The time at which the external account binding was last updated.

    • 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