attribute_groups_for_applications
Creates, updates, deletes, gets or lists an attribute_groups_for_applications resource.
Overview
| Name | attribute_groups_for_applications |
| Type | Resource |
| Id | aws.servicecatalog_appregistry.attribute_groups_for_applications |
Fields
The following fields are returned by SELECT queries:
- list_attribute_groups_for_application
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the attribute group. (pattern: <code>[-.\w]+</code>) |
name | string | This field is no longer supported. We recommend you don't use the field when using ListAttributeGroupsForApplication. The name of the attribute group. (pattern: <code>[-.\w]+</code>) |
arn | string | The Amazon resource name (ARN) that specifies the attribute group. (pattern: <code>arn:aws[-a-z]*:servicecatalog:[a-z]{2}(-gov)?-[a-z]+-\d:\d{12}:/attribute-groups/[-.\w]+</code>) |
created_by | string | The service principal that created the attribute group. (pattern: <code>^(?!-)([a-z0-9-]+.)+(aws.internal|amazonaws.com(.cn)?)$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_attribute_groups_for_application | select | application, region | nextToken, maxResults | Lists the details of all attribute groups associated with a specific application. The results display in pages. |
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 |
|---|---|---|
application | string | The name or ID of the application. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional. |
nextToken | string | This token retrieves the next page of results after a previous API call. |
SELECT examples
- list_attribute_groups_for_application
Lists the details of all attribute groups associated with a specific application. The results display in pages.
SELECT
id,
name,
arn,
created_by
FROM aws.servicecatalog_appregistry.attribute_groups_for_applications
WHERE application = '{{ application }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;