Transfer.Paginator.
ListCertificates
¶paginator = client.get_paginator('list_certificates')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Transfer.Client.list_certificates()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'Certificates': [
{
'Arn': 'string',
'CertificateId': 'string',
'Usage': 'SIGNING'|'ENCRYPTION',
'Status': 'ACTIVE'|'PENDING_ROTATION'|'INACTIVE',
'ActiveDate': datetime(2015, 1, 1),
'InactiveDate': datetime(2015, 1, 1),
'Type': 'CERTIFICATE'|'CERTIFICATE_WITH_PRIVATE_KEY',
'Description': 'string'
},
]
}
Response Structure
Returns an array of the certificates that are specified in the ListCertificates
call.
Describes the properties of a certificate.
The Amazon Resource Name (ARN) of the specified certificate.
An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.
Specifies whether this certificate is used for signing or encryption.
The certificate can be either ACTIVE
, PENDING_ROTATION
, or INACTIVE
. PENDING_ROTATION
means that this certificate will replace the current certificate when it expires.
An optional date that specifies when the certificate becomes active.
An optional date that specifies when the certificate becomes inactive.
The type for the certificate. If a private key has been specified for the certificate, its type is CERTIFICATE_WITH_PRIVATE_KEY
. If there is no private key, the type is CERTIFICATE
.
The name or short description that's used to identify the certificate.