Learn R Programming

paws.security.identity (version 0.1.12)

ram_list_permissions: Lists the AWS RAM permissions

Description

Lists the AWS RAM permissions.

Usage

ram_list_permissions(resourceType, nextToken, maxResults)

Value

A list with the following syntax:

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

Arguments

resourceType

Specifies the resource type for which to list permissions. For example, to list only permissions that apply to EC2 subnets, specify ec2:Subnet.

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.

Request syntax

svc$list_permissions(
  resourceType = "string",
  nextToken = "string",
  maxResults = 123
)