:doc:`ElasticLoadBalancingv2 <../../elbv2>` / Client / describe_trust_stores

*********************
describe_trust_stores
*********************



.. py:method:: ElasticLoadBalancingv2.Client.describe_trust_stores(**kwargs)

  

  Describes all trust stores for the specified account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStores>`_  


  **Request Syntax**
  ::

    response = client.describe_trust_stores(
        TrustStoreArns=[
            'string',
        ],
        Names=[
            'string',
        ],
        Marker='string',
        PageSize=123
    )
    
  :type TrustStoreArns: list
  :param TrustStoreArns: 

    The Amazon Resource Name (ARN) of the trust store.

    

  
    - *(string) --* 

    

  :type Names: list
  :param Names: 

    The names of the trust stores.

    

  
    - *(string) --* 

    

  :type Marker: string
  :param Marker: 

    The marker for the next set of results. (You received this marker from a previous call.)

    

  
  :type PageSize: integer
  :param PageSize: 

    The maximum number of results to return with this call.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'TrustStores': [
              {
                  'Name': 'string',
                  'TrustStoreArn': 'string',
                  'Status': 'ACTIVE'|'CREATING',
                  'NumberOfCaCertificates': 123,
                  'TotalRevokedEntries': 123
              },
          ],
          'NextMarker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TrustStores** *(list) --* 

        Information about the trust stores.

        
        

        - *(dict) --* 

          Information about a trust store.

          
          

          - **Name** *(string) --* 

            The name of the trust store.

            
          

          - **TrustStoreArn** *(string) --* 

            The Amazon Resource Name (ARN) of the trust store.

            
          

          - **Status** *(string) --* 

            The current status of the trust store.

            
          

          - **NumberOfCaCertificates** *(integer) --* 

            The number of ca certificates in the trust store.

            
          

          - **TotalRevokedEntries** *(integer) --* 

            The number of revoked certificates in the trust store.

            
      
    
      

      - **NextMarker** *(string) --* 

        If there are additional results, this is the marker for the next set of results. Otherwise, this is null.

        
  
  **Exceptions**
  
  *   :py:class:`ElasticLoadBalancingv2.Client.exceptions.TrustStoreNotFoundException`

  