Omics.Paginator.
ListReadSetImportJobs
¶paginator = client.get_paginator('list_read_set_import_jobs')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Omics.Client.list_read_set_import_jobs()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
filter={
'createdAfter': datetime(2015, 1, 1),
'createdBefore': datetime(2015, 1, 1),
'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLING'|'CANCELLED'|'FAILED'|'COMPLETED'|'COMPLETED_WITH_FAILURES'
},
sequenceStoreId='string',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A filter to apply to the list.
The filter's start date.
The filter's end date.
A status to filter on.
[REQUIRED]
The jobs' sequence store ID.
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.
dict
Response Syntax
{
'importJobs': [
{
'completionTime': datetime(2015, 1, 1),
'creationTime': datetime(2015, 1, 1),
'id': 'string',
'roleArn': 'string',
'sequenceStoreId': 'string',
'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLING'|'CANCELLED'|'FAILED'|'COMPLETED'|'COMPLETED_WITH_FAILURES'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
importJobs (list) --
A list of jobs.
(dict) --
An import read set job.
completionTime (datetime) --
When the job completed.
creationTime (datetime) --
When the job was created.
id (string) --
The job's ID.
roleArn (string) --
The job's service role ARN.
sequenceStoreId (string) --
The job's sequence store ID.
status (string) --
The job's status.
NextToken (string) --
A token to resume pagination.