Skip to content

List Variant Stores

omics_list_variant_stores R Documentation

Retrieves a list of variant stores

Description

Retrieves a list of variant stores.

Usage

omics_list_variant_stores(maxResults, ids, nextToken, filter)

Arguments

maxResults

The maximum number of stores to return in one page of results.

ids

A list of store IDs.

nextToken

Specify the pagination token from a previous request to retrieve the next page of results.

filter

A filter to apply to the list.

Value

A list with the following syntax:

list(
  variantStores = list(
    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"
      ),
      statusMessage = "string",
      storeSizeBytes = 123
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_variant_stores(
  maxResults = 123,
  ids = list(
    "string"
  ),
  nextToken = "string",
  filter = list(
    status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED"
  )
)