Skip to content

List Customer Managed Policy References in Permission Set

ssoadmin_list_customer_managed_policy_references_in_permission_set R Documentation

Lists all customer managed policies attached to a specified PermissionSet

Description

Lists all customer managed policies attached to a specified PermissionSet.

Usage

ssoadmin_list_customer_managed_policy_references_in_permission_set(
  InstanceArn, MaxResults, NextToken, PermissionSetArn)

Arguments

InstanceArn

[required] The ARN of the IAM Identity Center instance under which the operation will be executed.

MaxResults

The maximum number of results to display for the list call.

NextToken

The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.

PermissionSetArn

[required] The ARN of the PermissionSet.

Value

A list with the following syntax:

list(
  CustomerManagedPolicyReferences = list(
    list(
      Name = "string",
      Path = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_customer_managed_policy_references_in_permission_set(
  InstanceArn = "string",
  MaxResults = 123,
  NextToken = "string",
  PermissionSetArn = "string"
)