Create Reference Store
| omics_create_reference_store | R Documentation |
Creates a reference store and returns metadata in JSON format¶
Description¶
Creates a reference store and returns metadata in JSON format. Reference
stores are used to store reference genomes in FASTA format. A reference
store is created when the first reference genome is imported. To import
additional reference genomes from an Amazon S3 bucket, use the
start_reference_import_job API operation.
For more information, see Creating a HealthOmics reference store in the Amazon Web Services HealthOmics User Guide.
Usage¶
omics_create_reference_store(name, description, sseConfig, tags,
clientToken)
Arguments¶
name |
[required] A name for the store. |
description |
A description for the store. |
sseConfig |
Server-side encryption (SSE) settings for the store. |
tags |
Tags for the store. |
clientToken |
To ensure that requests don't run multiple times, specify a unique token for each request. |
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"
)
)
Request syntax¶
svc$create_reference_store(
name = "string",
description = "string",
sseConfig = list(
type = "KMS",
keyArn = "string"
),
tags = list(
"string"
),
clientToken = "string"
)