APIGateway.Paginator.
GetClientCertificates
¶paginator = client.get_paginator('get_client_certificates')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from APIGateway.Client.get_client_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.
{
'items': [
{
'clientCertificateId': 'string',
'description': 'string',
'pemEncodedCertificate': 'string',
'createdDate': datetime(2015, 1, 1),
'expirationDate': datetime(2015, 1, 1),
'tags': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
Represents a collection of ClientCertificate resources.
The current page of elements from this collection.
Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.
The identifier of the client certificate.
The description of the client certificate.
The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .
The timestamp when the client certificate was created.
The timestamp when the client certificate will expire.
The collection of tags. Each tag element is associated with a given resource.
A token to resume pagination.