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"
)
)
)