:doc:`WorkSpacesWeb <../../workspaces-web>` / Client / list_trust_store_certificates

*****************************
list_trust_store_certificates
*****************************



.. py:method:: WorkSpacesWeb.Client.list_trust_store_certificates(**kwargs)

  

  Retrieves a list of trust store certificates.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStoreCertificates>`_  


  **Request Syntax**
  ::

    response = client.list_trust_store_certificates(
        trustStoreArn='string',
        nextToken='string',
        maxResults=123
    )
    
  :type trustStoreArn: string
  :param trustStoreArn: **[REQUIRED]** 

    The ARN of the trust store

    

  
  :type nextToken: string
  :param nextToken: 

    The pagination token used to retrieve the next page of results for this operation.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to be included in the next page.

    

  
  
  :rtype: 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**
  
  *   :py:class:`WorkSpacesWeb.Client.exceptions.InternalServerException`

  
  *   :py:class:`WorkSpacesWeb.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`WorkSpacesWeb.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`WorkSpacesWeb.Client.exceptions.ThrottlingException`

  
  *   :py:class:`WorkSpacesWeb.Client.exceptions.ValidationException`

  