:doc:`DataZone <../../datazone>` / Paginator / ListAssetRevisions

******************
ListAssetRevisions
******************



.. py:class:: DataZone.Paginator.ListAssetRevisions

  ::

    
    paginator = client.get_paginator('list_asset_revisions')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`DataZone.Client.list_asset_revisions`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          identifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The identifier of the domain.

      

    
    :type identifier: string
    :param identifier: **[REQUIRED]** 

      The identifier of the asset.

      

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

      
      ::

        {
            'items': [
                {
                    'domainId': 'string',
                    'id': 'string',
                    'revision': 'string',
                    'createdBy': 'string',
                    'createdAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **items** *(list) --* 

          The results of the ``ListAssetRevisions`` action.

          
          

          - *(dict) --* 

            The revision of an inventory asset.

            
            

            - **domainId** *(string) --* 

              The Amazon DataZone user who created the inventory asset.

              
            

            - **id** *(string) --* 

              The identifier of the inventory asset revision.

              
            

            - **revision** *(string) --* 

              The revision details of the inventory asset.

              
            

            - **createdBy** *(string) --* 

              The Amazon DataZone user who created the asset revision.

              
            

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

              The timestamp of when an inventory asset revison was created.

              
        
      
        

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

          A token to resume pagination.

          
    