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

********************************
describe_trust_store_revocations
********************************



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

  

  Describes the revocation files in use by the specified trust store or revocation files.

  

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


  **Request Syntax**
  ::

    response = client.describe_trust_store_revocations(
        TrustStoreArn='string',
        RevocationIds=[
            123,
        ],
        Marker='string',
        PageSize=123
    )
    
  :type TrustStoreArn: string
  :param TrustStoreArn: **[REQUIRED]** 

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

    

  
  :type RevocationIds: list
  :param RevocationIds: 

    The revocation IDs of the revocation files you want to describe.

    

  
    - *(integer) --* 

    

  :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**

    
    ::

      {
          'TrustStoreRevocations': [
              {
                  'TrustStoreArn': 'string',
                  'RevocationId': 123,
                  'RevocationType': 'CRL',
                  'NumberOfRevokedEntries': 123
              },
          ],
          'NextMarker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TrustStoreRevocations** *(list) --* 

        Information about the revocation file in the trust store.

        
        

        - *(dict) --* 

          Information about the revocations used by a trust store.

          
          

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

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

            
          

          - **RevocationId** *(integer) --* 

            The revocation ID of a revocation file in use.

            
          

          - **RevocationType** *(string) --* 

            The type of revocation file.

            
          

          - **NumberOfRevokedEntries** *(integer) --* 

            The number of revoked certificates.

            
      
    
      

      - **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`

  
  *   :py:class:`ElasticLoadBalancingv2.Client.exceptions.RevocationIdNotFoundException`

  