Learn R Programming

paws.security.identity (version 0.1.12)

ram_get_permission: Gets the contents of an AWS RAM permission in JSON format

Description

Gets the contents of an AWS RAM permission in JSON format.

Usage

ram_get_permission(permissionArn, permissionVersion)

Value

A list with the following syntax:

list(
  permission = list(
    arn = "string",
    version = "string",
    defaultVersion = TRUE|FALSE,
    name = "string",
    resourceType = "string",
    permission = "string",
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdatedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Arguments

permissionArn

[required] The ARN of the permission.

permissionVersion

The identifier for the version of the permission.

Request syntax

svc$get_permission(
  permissionArn = "string",
  permissionVersion = 123
)