Skip to content

Get Variant Store

omics_get_variant_store R Documentation

Gets information about a variant store

Description

Gets information about a variant store.

Usage

omics_get_variant_store(name)

Arguments

name

[required] The store's name.

Value

A list with the following syntax:

list(
  id = "string",
  reference = list(
    referenceArn = "string"
  ),
  status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
  storeArn = "string",
  name = "string",
  description = "string",
  sseConfig = list(
    type = "KMS",
    keyArn = "string"
  ),
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  ),
  tags = list(
    "string"
  ),
  statusMessage = "string",
  storeSizeBytes = 123
)

Request syntax

svc$get_variant_store(
  name = "string"
)