Skip to content

Get Reference Store

omics_get_reference_store R Documentation

Gets information about a reference store

Description

Gets information about a reference store.

Usage

omics_get_reference_store(id)

Arguments

id

[required] The store's ID.

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$get_reference_store(
  id = "string"
)