Learn R Programming

paws.security.identity (version 0.1.11)

ram_list_pending_invitation_resources: Lists the resources in a resource share that is shared with you but that the invitation is still pending for

Description

Lists the resources in a resource share that is shared with you but that the invitation is still pending for.

Usage

ram_list_pending_invitation_resources(resourceShareInvitationArn,
  nextToken, maxResults)

Arguments

resourceShareInvitationArn

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

nextToken

The token for the next page of results.

maxResults

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

Value

A list with the following syntax:

list(
  resources = list(
    list(
      arn = "string",
      type = "string",
      resourceShareArn = "string",
      resourceGroupArn = "string",
      status = "AVAILABLE"|"ZONAL_RESOURCE_INACCESSIBLE"|"LIMIT_EXCEEDED"|"UNAVAILABLE"|"PENDING",
      statusMessage = "string",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_pending_invitation_resources(
  resourceShareInvitationArn = "string",
  nextToken = "string",
  maxResults = 123
)