Get Sequence Store
omics_get_sequence_store | R Documentation |
Gets information about a sequence store¶
Description¶
Gets information about a sequence store.
Usage¶
Arguments¶
id
[required] The store's ID.
Value¶
A list with the following syntax:
list(
id = "string",
arn = "string",
name = "string",
description = "string",
sseConfig = list(
type = "KMS",
keyArn = "string"
),
creationTime = as.POSIXct(
"2015-01-01"
),
fallbackLocation = "string",
s3Access = list(
s3Uri = "string",
s3AccessPointArn = "string",
accessLogLocation = "string"
),
eTagAlgorithmFamily = "MD5up"|"SHA256up"|"SHA512up",
status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
statusMessage = "string",
propagatedSetLevelTags = list(
"string"
),
updateTime = as.POSIXct(
"2015-01-01"
)
)