Skip to main content

attribute_groups_for_applications

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

Overview

Nameattribute_groups_for_applications
TypeResource
Idaws.servicecatalog_appregistry.attribute_groups_for_applications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier of the attribute group. (pattern: <code>[-.\w]+</code>)
namestringThis 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>)
arnstringThe 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_bystringThe 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:

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

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

SELECT examples

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