Skip to main content

associated_attribute_groups

Creates, updates, deletes, gets or lists an associated_attribute_groups resource.

Overview

Nameassociated_attribute_groups
TypeResource
Idaws.servicecatalog_appregistry.associated_attribute_groups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attribute_groupstringA list of attribute group IDs.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_associated_attribute_groupsselectapplication, regionnextToken, maxResultsLists 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.

NameDatatypeDescription
applicationstringThe name or ID of the application.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe 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.
nextTokenstringThe token to use to get the next page of results after a previous API call.

SELECT examples

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 }}'
;