:doc:`IAMRolesAnywhere <../../rolesanywhere>` / Paginator / ListCrls

********
ListCrls
********



.. py:class:: IAMRolesAnywhere.Paginator.ListCrls

  ::

    
    paginator = client.get_paginator('list_crls')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`IAMRolesAnywhere.Client.list_crls`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/rolesanywhere-2018-05-10/ListCrls>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          pageSize=123,
          PaginationConfig={
              'MaxItems': 123,
              'StartingToken': 'string'
          }
      )
      
    :type pageSize: integer
    :param pageSize: 

      The number of resources in the paginated list.

      

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

        

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

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

        

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

      
      ::

        {
            'crls': [
                {
                    'crlId': 'string',
                    'crlArn': 'string',
                    'name': 'string',
                    'enabled': True|False,
                    'crlData': b'bytes',
                    'trustAnchorArn': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **crls** *(list) --* 

          A list of certificate revocation lists (CRL).

          
          

          - *(dict) --* 

            The state of the certificate revocation list (CRL) after a read or write operation.

            
            

            - **crlId** *(string) --* 

              The unique identifier of the certificate revocation list (CRL).

              
            

            - **crlArn** *(string) --* 

              The ARN of the certificate revocation list (CRL).

              
            

            - **name** *(string) --* 

              The name of the certificate revocation list (CRL).

              
            

            - **enabled** *(boolean) --* 

              Indicates whether the certificate revocation list (CRL) is enabled.

              
            

            - **crlData** *(bytes) --* 

              The state of the certificate revocation list (CRL) after a read or write operation.

              
            

            - **trustAnchorArn** *(string) --* 

              The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.

              
            

            - **createdAt** *(datetime) --* 

              The ISO-8601 timestamp when the certificate revocation list (CRL) was created.

              
            

            - **updatedAt** *(datetime) --* 

              The ISO-8601 timestamp when the certificate revocation list (CRL) was last updated.

              
        
      
        

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

          A token to resume pagination.

          
    