Skip to content

Describe Permission Set

ssoadmin_describe_permission_set R Documentation

Gets the details of the permission set

Description

Gets the details of the permission set.

Usage

ssoadmin_describe_permission_set(InstanceArn, PermissionSetArn)

Arguments

InstanceArn

[required] The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

PermissionSetArn

[required] The ARN of the permission set.

Value

A list with the following syntax:

list(
  PermissionSet = list(
    CreatedDate = as.POSIXct(
      "2015-01-01"
    ),
    Description = "string",
    Name = "string",
    PermissionSetArn = "string",
    RelayState = "string",
    SessionDuration = "string"
  )
)

Request syntax

svc$describe_permission_set(
  InstanceArn = "string",
  PermissionSetArn = "string"
)