Skip to content

Update Variant Store

omics_update_variant_store R Documentation

Updates a variant store

Description

Updates a variant store.

Usage

omics_update_variant_store(name, description)

Arguments

name

[required] A name for the store.

description

A description 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",
  description = "string",
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_variant_store(
  name = "string",
  description = "string"
)