List Sequence Stores
omics_list_sequence_stores | R Documentation |
Retrieves a list of sequence stores¶
Description¶
Retrieves a list of sequence stores.
Usage¶
Arguments¶
maxResults
The maximum number of stores 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",
sequenceStores = list(
list(
arn = "string",
id = "string",
name = "string",
description = "string",
sseConfig = list(
type = "KMS",
keyArn = "string"
),
creationTime = as.POSIXct(
"2015-01-01"
),
fallbackLocation = "string",
eTagAlgorithmFamily = "MD5up"|"SHA256up"|"SHA512up",
status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
statusMessage = "string",
updateTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_sequence_stores(
maxResults = 123,
nextToken = "string",
filter = list(
name = "string",
createdAfter = as.POSIXct(
"2015-01-01"
),
createdBefore = as.POSIXct(
"2015-01-01"
),
status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
updatedAfter = as.POSIXct(
"2015-01-01"
),
updatedBefore = as.POSIXct(
"2015-01-01"
)
)
)