List Read Set Export Jobs
omics_list_read_set_export_jobs | R Documentation |
Retrieves a list of read set export jobs¶
Description¶
Retrieves a list of read set export jobs.
Usage¶
Arguments¶
sequenceStoreId
[required] The jobs' sequence store ID.
maxResults
The maximum number of jobs to return in one page of results.
nextToken
Specify the pagination token from a previous request to retrieve the next page of results.
filter
A filter to apply to the list.
Value¶
A list with the following syntax:
list(
nextToken = "string",
exportJobs = list(
list(
id = "string",
sequenceStoreId = "string",
destination = "string",
status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES",
creationTime = as.POSIXct(
"2015-01-01"
),
completionTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_read_set_export_jobs(
sequenceStoreId = "string",
maxResults = 123,
nextToken = "string",
filter = list(
status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLING"|"CANCELLED"|"FAILED"|"COMPLETED"|"COMPLETED_WITH_FAILURES",
createdAfter = as.POSIXct(
"2015-01-01"
),
createdBefore = as.POSIXct(
"2015-01-01"
)
)
)