aws.iam.list_groups
Example SQL Queries
SELECT * FROMaws.iam.list_groups;Description
Lists the IAM groups that have the specified path prefix.
You can paginate the results using the MaxItems and Marker parameters.
Table Definition
| Column Name | Column Data Type |
|---|---|
| path_prefix Input Column The path prefix for filtering the results. For example, the prefix /division_abc/subdivision_xyz/ gets all groups whose path starts with /division_abc/subdivision_xyz/. This parameter is optional. If it is not included, it defaults to a slash (/), listing all groups. 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 |
| _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
| |
| arn The Amazon Resource Name (ARN) specifying the group. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide. | VARCHAR |
| create_date The date and time, in ISO 8601 date-time format, when the group was created. | TIMESTAMP_S |
| group_id The stable and unique string identifying the group. For more information about IDs, see IAM identifiers in the IAM User Guide. | VARCHAR |
| group_name The friendly name that identifies the group. | VARCHAR |
| path The path to the group. For more information about paths, see IAM identifiers in the IAM User Guide. | VARCHAR |