Skip to content

Get Share

omics_get_share R Documentation

Retrieves the metadata for the specified resource share

Description

Retrieves the metadata for the specified resource share.

Usage

omics_get_share(shareId)

Arguments

shareId

[required] The ID of the share.

Value

A list with the following syntax:

list(
  share = list(
    shareId = "string",
    resourceArn = "string",
    resourceId = "string",
    principalSubscriber = "string",
    ownerId = "string",
    status = "PENDING"|"ACTIVATING"|"ACTIVE"|"DELETING"|"DELETED"|"FAILED",
    statusMessage = "string",
    shareName = "string",
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    updateTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$get_share(
  shareId = "string"
)