MigrationHubStrategyRecommendations.Paginator.
ListImportFileTask
¶paginator = client.get_paginator('list_import_file_task')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from MigrationHubStrategyRecommendations.Client.list_import_file_task()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'taskInfos': [
{
'completionTime': datetime(2015, 1, 1),
'id': 'string',
'importName': 'string',
'inputS3Bucket': 'string',
'inputS3Key': 'string',
'numberOfRecordsFailed': 123,
'numberOfRecordsSuccess': 123,
'startTime': datetime(2015, 1, 1),
'status': 'ImportInProgress'|'ImportFailed'|'ImportPartialSuccess'|'ImportSuccess'|'DeleteInProgress'|'DeleteFailed'|'DeletePartialSuccess'|'DeleteSuccess',
'statusReportS3Bucket': 'string',
'statusReportS3Key': 'string'
},
],
'NextToken': 'string'
}
Response Structure
Lists information about the files you import.
Information about the import file tasks you request.
The time that the import task completes.
The ID of the import file task.
The name of the import task given in StartImportFileTask
.
The S3 bucket where the import file is located.
The Amazon S3 key name of the import file.
The number of records that failed to be imported.
The number of records successfully imported.
Start time of the import task.
Status of import file task.
The S3 bucket name for status report of import task.
The Amazon S3 key name for status report of import task. The report contains details about whether each record imported successfully or why it did not.
A token to resume pagination.