managed_policies_in_permission_sets
Creates, updates, deletes, gets or lists a managed_policies_in_permission_sets resource.
Overview
| Name | managed_policies_in_permission_sets |
| Type | Resource |
| Id | aws.sso_admin.managed_policies_in_permission_sets |
Fields
The following fields are returned by SELECT queries:
- list_managed_policies_in_permission_set
| Name | Datatype | Description |
|---|---|---|
arn | string | The 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>) |
name | string | The name of the Amazon Web Services managed policy. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_managed_policies_in_permission_set | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_managed_policies_in_permission_set
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
;