List References
omics_list_references | R Documentation |
Retrieves a list of references¶
Description¶
Retrieves a list of references.
Usage¶
Arguments¶
referenceStoreId
[required] The references' reference store ID.
maxResults
The maximum number of references 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",
references = list(
list(
id = "string",
arn = "string",
referenceStoreId = "string",
md5 = "string",
status = "ACTIVE"|"DELETING"|"DELETED",
name = "string",
description = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
)
)
)
)