Skip to content

Update Sequence Store

omics_update_sequence_store R Documentation

Update one or more parameters for the sequence store

Description

Update one or more parameters for the sequence store.

Usage

omics_update_sequence_store(id, name, description, clientToken,
  fallbackLocation, propagatedSetLevelTags, s3AccessConfig)

Arguments

id

[required] The ID of the sequence store.

name

A name for the sequence store.

description

A description for the sequence store.

clientToken

To ensure that requests don't run multiple times, specify a unique token for each request.

fallbackLocation

The S3 URI of a bucket and folder to store Read Sets that fail to upload.

propagatedSetLevelTags

The tags keys to propagate to the S3 objects associated with read sets in the sequence store.

s3AccessConfig

S3 access configuration parameters.

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"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  ),
  propagatedSetLevelTags = list(
    "string"
  ),
  status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
  statusMessage = "string",
  fallbackLocation = "string",
  s3Access = list(
    s3Uri = "string",
    s3AccessPointArn = "string",
    accessLogLocation = "string"
  ),
  eTagAlgorithmFamily = "MD5up"|"SHA256up"|"SHA512up"
)

Request syntax

svc$update_sequence_store(
  id = "string",
  name = "string",
  description = "string",
  clientToken = "string",
  fallbackLocation = "string",
  propagatedSetLevelTags = list(
    "string"
  ),
  s3AccessConfig = list(
    accessLogLocation = "string"
  )
)