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

***************************
ListDataSourceRunActivities
***************************



.. py:class:: DataZone.Paginator.ListDataSourceRunActivities

  ::

    
    paginator = client.get_paginator('list_data_source_run_activities')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          identifier='string',
          status='FAILED'|'PUBLISHING_FAILED'|'SUCCEEDED_CREATED'|'SUCCEEDED_UPDATED'|'SKIPPED_ALREADY_IMPORTED'|'SKIPPED_ARCHIVED'|'SKIPPED_NO_ACCESS'|'UNCHANGED',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The identifier of the Amazon DataZone domain in which to list data source run activities.

      

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

      The identifier of the data source run.

      

    
    :type status: string
    :param status: 

      The status of the data source run.

      

    
    :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': [
                {
                    'database': 'string',
                    'dataSourceRunId': 'string',
                    'technicalName': 'string',
                    'dataAssetStatus': 'FAILED'|'PUBLISHING_FAILED'|'SUCCEEDED_CREATED'|'SUCCEEDED_UPDATED'|'SKIPPED_ALREADY_IMPORTED'|'SKIPPED_ARCHIVED'|'SKIPPED_NO_ACCESS'|'UNCHANGED',
                    'projectId': 'string',
                    'dataAssetId': 'string',
                    'technicalDescription': 'string',
                    'errorMessage': {
                        'errorType': 'ACCESS_DENIED_EXCEPTION'|'CONFLICT_EXCEPTION'|'INTERNAL_SERVER_EXCEPTION'|'RESOURCE_NOT_FOUND_EXCEPTION'|'SERVICE_QUOTA_EXCEEDED_EXCEPTION'|'THROTTLING_EXCEPTION'|'VALIDATION_EXCEPTION',
                        'errorDetail': 'string'
                    },
                    'lineageSummary': {
                        'eventId': 'string',
                        'eventStatus': 'REQUESTED'|'PROCESSING'|'SUCCESS'|'FAILED',
                        'errorMessage': 'string'
                    },
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          The results of the ``ListDataSourceRunActivities`` action.

          
          

          - *(dict) --* 

            The activity details of the data source run.

            
            

            - **database** *(string) --* 

              The database included in the data source run activity.

              
            

            - **dataSourceRunId** *(string) --* 

              The identifier of the data source for the data source run activity.

              
            

            - **technicalName** *(string) --* 

              The technical name included in the data source run activity.

              
            

            - **dataAssetStatus** *(string) --* 

              The status of the asset included in the data source run activity.

              
            

            - **projectId** *(string) --* 

              The project ID included in the data source run activity.

              
            

            - **dataAssetId** *(string) --* 

              The identifier of the asset included in the data source run activity.

              
            

            - **technicalDescription** *(string) --* 

              The technical description included in the data source run activity.

              
            

            - **errorMessage** *(dict) --* 

              The details of the error message that is returned if the operation cannot be successfully completed.

              
              

              - **errorType** *(string) --* 

                The type of the error message that is returned if the operation cannot be successfully completed.

                
              

              - **errorDetail** *(string) --* 

                The details of the error message that is returned if the operation cannot be successfully completed.

                
          
            

            - **lineageSummary** *(dict) --* 

              The data lineage summary.

              
              

              - **eventId** *(string) --* 

                The data lineage event ID.

                
              

              - **eventStatus** *(string) --* 

                The data lineage event status.

                
              

              - **errorMessage** *(string) --* 

                The data lineage error message.

                
          
            

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

              The timestamp of when data source run activity was created.

              
            

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

              The timestamp of when data source run activity was updated.

              
        
      
        

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

          A token to resume pagination.

          
    