Omics / Paginator / ListReadSetActivationJobs
ListReadSetActivationJobs#
- class Omics.Paginator.ListReadSetActivationJobs#
- paginator = client.get_paginator('list_read_set_activation_jobs') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - Omics.Client.list_read_set_activation_jobs().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( sequenceStoreId='string', filter={ 'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLING'|'CANCELLED'|'FAILED'|'COMPLETED'|'COMPLETED_WITH_FAILURES', 'createdAfter': datetime(2015, 1, 1), 'createdBefore': datetime(2015, 1, 1) }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- sequenceStoreId (string) – - [REQUIRED] - The read set’s sequence store ID. 
- filter (dict) – - A filter to apply to the list. - status (string) – - The filter’s status. 
- createdAfter (datetime) – - The filter’s start date. 
- createdBefore (datetime) – - The filter’s end date. 
 
- PaginationConfig (dict) – - 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 - NextTokenwill 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 - NextTokenfrom a previous response.
 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'activationJobs': [ { 'id': 'string', 'sequenceStoreId': 'string', 'status': 'SUBMITTED'|'IN_PROGRESS'|'CANCELLING'|'CANCELLED'|'FAILED'|'COMPLETED'|'COMPLETED_WITH_FAILURES', 'creationTime': datetime(2015, 1, 1), 'completionTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } - Response Structure- (dict) – - activationJobs (list) – - A list of jobs. - (dict) – - A read set activation job. - id (string) – - The job’s ID. 
- sequenceStoreId (string) – - The job’s sequence store ID. 
- status (string) – - The job’s status. 
- creationTime (datetime) – - When the job was created. 
- completionTime (datetime) – - When the job completed. 
 
 
- NextToken (string) – - A token to resume pagination.