aws.iam.list_entities_for_policy
Example SQL Queries
SELECT * FROMaws.iam.list_entities_for_policyWHERE"policy_arn" = 'VALUE';Description
Lists all IAM users, groups, and roles that the specified managed policy is attached to.
You can use the optional EntityFilter parameter to limit the results to a particular type of entity (users, groups, or roles). For example, to list only the roles that are attached to the specified policy, set EntityFilter to Role.
You can paginate the results using the MaxItems and Marker parameters.
Table Definition
| Column Name | Column Data Type |
|---|---|
| policy_arn Required Input Column The Amazon Resource Name (ARN) of the IAM policy for which you want the versions. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference. | VARCHAR |
| entity_filter Input Column The entity type to use for filtering the results. For example, when EntityFilter is Role, only the roles that are attached to the specified policy are returned. This parameter is optional. If it is not included, all attached entities (users, groups, and roles) are returned. The argument for this parameter must be one of the valid values listed below. | VARCHAR |
| path_prefix Input Column The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all entities. This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (\u0021) through the DEL character (\u007F), including most punctuation characters, digits, and upper and lowercased letters. | VARCHAR |
| policy_usage_filter Input Column The policy usage method to use for filtering the results. To list only permissions policies, set PolicyUsageFilter to PermissionsPolicy. To list only the policies used to set permissions boundaries, set the value to PermissionsBoundary. This parameter is optional. If it is not included, all policies are returned. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| policy_groups A list of IAM groups that the policy is attached to. | STRUCT( |
Show child fields
| |
| policy_roles A list of IAM roles that the policy is attached to. | STRUCT( |
Show child fields
| |
| policy_users A list of IAM users that the policy is attached to. | STRUCT( |
Show child fields
| |