List Annotation Import Jobs
omics_list_annotation_import_jobs | R Documentation |
Retrieves a list of annotation import jobs¶
Description¶
Retrieves a list of annotation import jobs.
Usage¶
Arguments¶
maxResults
The maximum number of jobs to return in one page of results.
ids
IDs of annotation import jobs to retrieve.
nextToken
Specifies 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(
annotationImportJobs = list(
list(
id = "string",
destinationName = "string",
versionName = "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"
)