ACM / Paginator / ListAcmeExternalAccountBindings
ListAcmeExternalAccountBindings¶
- class ACM.Paginator.ListAcmeExternalAccountBindings¶
paginator = client.get_paginator('list_acme_external_account_bindings')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
ACM.Client.list_acme_external_account_bindings().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
NextTokenwill 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
NextTokenfrom a previous response.
- 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) }, ], }
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.