Learn R Programming

paws.security.identity (version 0.1.12)

ram_update_resource_share: Updates the specified resource share that you own

Description

Updates the specified resource share that you own.

Usage

ram_update_resource_share(resourceShareArn, name,
  allowExternalPrincipals, clientToken)

Value

A list with the following syntax:

list(
  resourceShare = list(
    resourceShareArn = "string",
    name = "string",
    owningAccountId = "string",
    allowExternalPrincipals = TRUE|FALSE,
    status = "PENDING"|"ACTIVE"|"FAILED"|"DELETING"|"DELETED",
    statusMessage = "string",
    tags = list(
      list(
        key = "string",
        value = "string"
      )
    ),
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdatedTime = as.POSIXct(
      "2015-01-01"
    ),
    featureSet = "CREATED_FROM_POLICY"|"PROMOTING_TO_STANDARD"|"STANDARD"
  ),
  clientToken = "string"
)

Arguments

resourceShareArn

[required] The Amazon Resource Name (ARN) of the resource share.

name

The name of the resource share.

allowExternalPrincipals

Indicates whether principals outside your AWS organization can be associated with a resource share.

clientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

Request syntax

svc$update_resource_share(
  resourceShareArn = "string",
  name = "string",
  allowExternalPrincipals = TRUE|FALSE,
  clientToken = "string"
)