Skip to main content

managed_policies_in_permission_sets

Creates, updates, deletes, gets or lists a managed_policies_in_permission_sets resource.

Overview

Namemanaged_policies_in_permission_sets
TypeResource
Idaws.sso_admin.managed_policies_in_permission_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe ARN of the Amazon Web Services managed policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference. (pattern: <code>arn:aws(-[a-z]{1,5}){0,3}:iam::aws:policy((/[A-Za-z0-9.,+@=-]+)*)/([A-Za-z0-9.,+=@-]+)</code>)
namestringThe name of the Amazon Web Services managed policy.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_managed_policies_in_permission_setselectregionLists the Amazon Web Services managed policy that is attached to a specified permission set.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the Amazon Web Services managed policy that is attached to a specified permission set.

SELECT
arn,
name
FROM aws.sso_admin.managed_policies_in_permission_sets
WHERE region = '{{ region }}' -- required
;