Get Reference Metadata
omics_get_reference_metadata | R Documentation |
Gets information about a genome reference's metadata¶
Description¶
Gets information about a genome reference's metadata.
Usage¶
Arguments¶
id
[required] The reference's ID.
referenceStoreId
[required] The reference's reference store ID.
Value¶
A list with the following syntax:
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"
),
files = list(
source = list(
totalParts = 123,
partSize = 123,
contentLength = 123,
s3Access = list(
s3Uri = "string"
)
),
index = list(
totalParts = 123,
partSize = 123,
contentLength = 123,
s3Access = list(
s3Uri = "string"
)
)
),
creationType = "IMPORT",
creationJobId = "string"
)