Skip to content

Create Variant Store

omics_create_variant_store R Documentation

Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers

Description

Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change.

Creates a variant store.

Usage

omics_create_variant_store(reference, name, description, tags,
  sseConfig)

Arguments

reference

[required] The genome reference for the store's variants.

name

A name for the store.

description

A description for the store.

tags

Tags for the store.

sseConfig

Server-side encryption (SSE) settings for the store.

Value

A list with the following syntax:

list(
  id = "string",
  reference = list(
    referenceArn = "string"
  ),
  status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
  name = "string",
  creationTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$create_variant_store(
  reference = list(
    referenceArn = "string"
  ),
  name = "string",
  description = "string",
  tags = list(
    "string"
  ),
  sseConfig = list(
    type = "KMS",
    keyArn = "string"
  )
)