WorkSpacesWeb / Client / list_trust_store_certificates
list_trust_store_certificates¶
- WorkSpacesWeb.Client.list_trust_store_certificates(**kwargs)¶
Retrieves a list of trust store certificates.
See also: AWS API Documentation
Request Syntax
response = client.list_trust_store_certificates( trustStoreArn='string', nextToken='string', maxResults=123 )
- Parameters:
trustStoreArn (string) –
[REQUIRED]
The ARN of the trust store
nextToken (string) – The pagination token used to retrieve the next page of results for this operation.
maxResults (integer) – The maximum number of results to be included in the next page.
- Return type:
dict
- Returns:
Response Syntax
{ 'certificateList': [ { 'thumbprint': 'string', 'subject': 'string', 'issuer': 'string', 'notValidBefore': datetime(2015, 1, 1), 'notValidAfter': datetime(2015, 1, 1) }, ], 'trustStoreArn': 'string', 'nextToken': 'string' }
Response Structure
(dict) –
certificateList (list) –
The certificate list.
(dict) –
The summary of the certificate.
thumbprint (string) –
A hexadecimal identifier for the certificate.
subject (string) –
The entity the certificate belongs to.
issuer (string) –
The entity that issued the certificate.
notValidBefore (datetime) –
The certificate is not valid before this date.
notValidAfter (datetime) –
The certificate is not valid after this date.
trustStoreArn (string) –
The ARN of the trust store.
nextToken (string) –
The pagination token used to retrieve the next page of results for this operation.>
Exceptions
WorkSpacesWeb.Client.exceptions.InternalServerExceptionWorkSpacesWeb.Client.exceptions.ResourceNotFoundExceptionWorkSpacesWeb.Client.exceptions.AccessDeniedExceptionWorkSpacesWeb.Client.exceptions.ThrottlingExceptionWorkSpacesWeb.Client.exceptions.ValidationException