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

**************************
ListMetadataGenerationRuns
**************************



.. py:class:: DataZone.Paginator.ListMetadataGenerationRuns

  ::

    
    paginator = client.get_paginator('list_metadata_generation_runs')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          status='SUBMITTED'|'IN_PROGRESS'|'CANCELED'|'SUCCEEDED'|'FAILED'|'PARTIALLY_SUCCEEDED',
          type='BUSINESS_DESCRIPTIONS'|'BUSINESS_NAMES'|'BUSINESS_GLOSSARY_ASSOCIATIONS',
          targetIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The ID of the Amazon DataZone domain where you want to list metadata generation runs.

      

    
    :type status: string
    :param status: 

      The status of the metadata generation runs.

      

    
    :type type: string
    :param type: 

      The type of the metadata generation runs.

      

    
    :type targetIdentifier: string
    :param targetIdentifier: 

      The target ID for which you want to list metadata generation runs.

      

    
    :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',
                    'target': {
                        'type': 'ASSET',
                        'identifier': 'string',
                        'revision': 'string'
                    },
                    'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELED'|'SUCCEEDED'|'FAILED'|'PARTIALLY_SUCCEEDED',
                    'type': 'BUSINESS_DESCRIPTIONS'|'BUSINESS_NAMES'|'BUSINESS_GLOSSARY_ASSOCIATIONS',
                    'types': [
                        'BUSINESS_DESCRIPTIONS'|'BUSINESS_NAMES'|'BUSINESS_GLOSSARY_ASSOCIATIONS',
                    ],
                    'createdAt': datetime(2015, 1, 1),
                    'createdBy': 'string',
                    'owningProjectId': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          The results of the ListMetadataGenerationRuns action.

          
          

          - *(dict) --* 

            The metadata generation run.

            
            

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

              The ID of the Amazon DataZone domain in which the metadata generation run was created.

              
            

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

              The ID of the metadata generation run.

              
            

            - **target** *(dict) --* 

              The asset for which metadata was generated.

              
              

              - **type** *(string) --* 

                The type of the asset for which metadata was generated.

                
              

              - **identifier** *(string) --* 

                The ID of the metadata generation run's target.

                
              

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

                The revision of the asset for which metadata was generated.

                
          
            

            - **status** *(string) --* 

              The status of the metadata generation run.

              
            

            - **type** *(string) --* 

              The type of the metadata generation run.

              
            

            - **types** *(list) --* 

              The types of the metadata generation run.

              
              

              - *(string) --* 
          
            

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

              The timestamp at which the metadata generation run was created.

              
            

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

              The user who created the metadata generation run.

              
            

            - **owningProjectId** *(string) --* 

              The ID of the project that owns the asset for which the metadata generation was ran.

              
        
      
        

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

          A token to resume pagination.

          
    