:doc:`DatabaseMigrationService <../../dms>` / Paginator / DescribeReplicationTaskAssessmentResults

****************************************
DescribeReplicationTaskAssessmentResults
****************************************



.. py:class:: DatabaseMigrationService.Paginator.DescribeReplicationTaskAssessmentResults

  ::

    
    paginator = client.get_paginator('describe_replication_task_assessment_results')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`DatabaseMigrationService.Client.describe_replication_task_assessment_results`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentResults>`_    


    **Request Syntax**
    ::

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

      The Amazon Resource Name (ARN) string that uniquely identifies the task. When this input parameter is specified, the API returns only one result and ignore the values of the ``MaxRecords`` and ``Marker`` parameters.

      

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

      
      ::

        {
            'BucketName': 'string',
            'ReplicationTaskAssessmentResults': [
                {
                    'ReplicationTaskIdentifier': 'string',
                    'ReplicationTaskArn': 'string',
                    'ReplicationTaskLastAssessmentDate': datetime(2015, 1, 1),
                    'AssessmentStatus': 'string',
                    'AssessmentResultsFile': 'string',
                    'AssessmentResults': 'string',
                    'S3ObjectUrl': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **BucketName** *(string) --* 

          - The Amazon S3 bucket where the task assessment report is located.

          
        

        - **ReplicationTaskAssessmentResults** *(list) --* 

          The task assessment report.

          
          

          - *(dict) --* 

            The task assessment report in JSON format.

            
            

            - **ReplicationTaskIdentifier** *(string) --* 

              The replication task identifier of the task on which the task assessment was run.

              
            

            - **ReplicationTaskArn** *(string) --* 

              The Amazon Resource Name (ARN) of the replication task.

              
            

            - **ReplicationTaskLastAssessmentDate** *(datetime) --* 

              The date the task assessment was completed.

              
            

            - **AssessmentStatus** *(string) --* 

              The status of the task assessment.

              
            

            - **AssessmentResultsFile** *(string) --* 

              The file containing the results of the task assessment.

              
            

            - **AssessmentResults** *(string) --* 

              The task assessment results in JSON format.

               

              The response object only contains this field if you provide  DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request.

              
            

            - **S3ObjectUrl** *(string) --* 

              The URL of the S3 object containing the task assessment results.

               

              The response object only contains this field if you provide  DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request.

              
        
      
        

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

          A token to resume pagination.

          
    