ACM / Paginator / ListAcmeEndpoints
ListAcmeEndpoints¶
- class ACM.Paginator.ListAcmeEndpoints¶
paginator = client.get_paginator('list_acme_endpoints')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
ACM.Client.list_acme_endpoints().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
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
{ 'AcmeEndpoints': [ { 'AcmeEndpointArn': 'string', 'EndpointUrl': 'string', 'Status': 'CREATING'|'ACTIVE'|'DELETING'|'FAILED', 'FailureReason': 'string', 'AuthorizationBehavior': 'PRE_APPROVED', 'Contact': 'REQUIRED'|'NOT_REQUIRED', 'CertificateAuthority': { 'PublicCertificateAuthority': { 'AllowedKeyAlgorithms': [ 'RSA_2048'|'EC_prime256v1'|'EC_secp384r1', ] } }, 'CertificateTags': [ { 'Key': 'string', 'Value': 'string' }, ], 'CreatedAt': datetime(2015, 1, 1), 'UpdatedAt': datetime(2015, 1, 1) }, ], }
Response Structure
(dict) –
AcmeEndpoints (list) –
The list of ACME endpoints.
(dict) –
Contains summary information about an ACME endpoint.
AcmeEndpointArn (string) –
The Amazon Resource Name (ARN) of the ACME endpoint.
EndpointUrl (string) –
The URL of the ACME endpoint.
Status (string) –
The status of the ACME endpoint.
FailureReason (string) –
The reason the ACME endpoint failed, if applicable.
AuthorizationBehavior (string) –
The authorization behavior of the ACME endpoint.
Contact (string) –
Whether ACME clients must provide contact information during account registration.
CertificateAuthority (dict) –
The certificate authority configuration for the ACME endpoint.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
PublicCertificateAuthority. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBERas the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBERis as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
PublicCertificateAuthority (dict) –
Configuration for using a public certificate authority.
AllowedKeyAlgorithms (list) –
The key algorithms allowed for certificates issued by this certificate authority.
(string) –
CertificateTags (list) –
Tags applied to certificates issued through this ACME endpoint.
(dict) –
A key-value pair that identifies or specifies metadata about an ACM resource.
Key (string) –
The key of the tag.
Value (string) –
The value of the tag.
CreatedAt (datetime) –
The time at which the ACME endpoint was created.
UpdatedAt (datetime) –
The time at which the ACME endpoint was last updated.