:doc:`ElasticLoadBalancingv2 <../../elbv2>` / Paginator / DescribeTrustStoreRevocations

*****************************
DescribeTrustStoreRevocations
*****************************



.. py:class:: ElasticLoadBalancingv2.Paginator.DescribeTrustStoreRevocations

  ::

    
    paginator = client.get_paginator('describe_trust_store_revocations')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`ElasticLoadBalancingv2.Client.describe_trust_store_revocations`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          TrustStoreArn='string',
          RevocationIds=[
              123,
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :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 PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'TrustStoreRevocations': [
                {
                    'TrustStoreArn': 'string',
                    'RevocationId': 123,
                    'RevocationType': 'CRL',
                    'NumberOfRevokedEntries': 123
                },
            ],
            'NextToken': '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.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    