List Variant Import Jobs
omics_list_variant_import_jobs | R Documentation |
Retrieves a list of variant import jobs¶
Description¶
Retrieves a list of variant import jobs.
Usage¶
omics_list_variant_import_jobs(maxResults, ids, nextToken, filter)
Arguments¶
maxResults |
The maximum number of import jobs to return in one page of results. |
ids |
A list of job IDs. |
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(
variantImportJobs = list(
list(
id = "string",
destinationName = "string",
roleArn = "string",
status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|"COMPLETED_WITH_FAILURES",
creationTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
),
completionTime = as.POSIXct(
"2015-01-01"
),
runLeftNormalization = TRUE|FALSE,
annotationFields = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_variant_import_jobs(
maxResults = 123,
ids = list(
"string"
),
nextToken = "string",
filter = list(
status = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|"COMPLETED_WITH_FAILURES",
storeName = "string"
)
)