RTBFabric / Client / list_certificate_associations
list_certificate_associations¶
- RTBFabric.Client.list_certificate_associations(**kwargs)¶
Lists the certificate associations for a responder gateway.
See also: AWS API Documentation
Request Syntax
response = client.list_certificate_associations( gatewayId='string', nextToken='string', maxResults=123 )
- Parameters:
gatewayId (string) –
[REQUIRED]
The unique identifier of the gateway.
nextToken (string) – If
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.maxResults (integer) –
The maximum number of results that are returned per call. You can use
nextTokento obtain further pages of results.This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
- Return type:
dict
- Returns:
Response Syntax
{ 'certificateAssociations': [ { 'acmCertificateArn': 'string', 'status': 'PENDING_ASSOCIATION'|'ASSOCIATED'|'PENDING_DISASSOCIATION'|'DISASSOCIATED'|'FAILED', 'associatedAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) –
certificateAssociations (list) –
The list of certificate associations for the gateway.
(dict) –
Describes a summary of a certificate association.
acmCertificateArn (string) –
The Amazon Resource Name (ARN) of the ACM certificate.
status (string) –
The status of the certificate association.
associatedAt (datetime) –
The timestamp of when the certificate was associated.
updatedAt (datetime) –
The timestamp of when the certificate association was last updated.
nextToken (string) –
If
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Exceptions
RTBFabric.Client.exceptions.ResourceNotFoundExceptionRTBFabric.Client.exceptions.ThrottlingExceptionRTBFabric.Client.exceptions.AccessDeniedExceptionRTBFabric.Client.exceptions.InternalServerExceptionRTBFabric.Client.exceptions.ValidationException