associated_attribute_groups
Creates, updates, deletes, gets or lists an associated_attribute_groups resource.
Overview
| Name | associated_attribute_groups |
| Type | Resource |
| Id | aws.servicecatalog_appregistry.associated_attribute_groups |
Fields
The following fields are returned by SELECT queries:
- list_associated_attribute_groups
| Name | Datatype | Description |
|---|---|---|
attribute_group | string | A list of attribute group IDs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_associated_attribute_groups | select | application, region | nextToken, maxResults | Lists all attribute groups that are associated with specified application. Results are paginated. |
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 (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional. |
nextToken | string | The token to use to get the next page of results after a previous API call. |
SELECT examples
- list_associated_attribute_groups
Lists all attribute groups that are associated with specified application. Results are paginated.
SELECT
attribute_group
FROM aws.servicecatalog_appregistry.associated_attribute_groups
WHERE application = '{{ application }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;