Skip to main content

grouping_configurations

Creates, updates, deletes, gets or lists a grouping_configurations resource.

Overview

Namegrouping_configurations
TypeResource
Idaws.application_signals.grouping_configurations

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
put_grouping_configurationreplaceregion, GroupingAttributeDefinitionsCreates or updates the grouping configuration for this account. This operation allows you to define custom grouping attributes that determine how services are logically grouped based on telemetry attributes, Amazon Web Services tags, or predefined mappings. These grouping attributes can then be used to organize and filter services in the Application Signals console and APIs.
delete_grouping_configurationdeleteregionDeletes the grouping configuration for this account. This removes all custom grouping attribute definitions that were previously configured.

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
regionstringAWS region (default: us-east-1)

REPLACE examples

Creates or updates the grouping configuration for this account. This operation allows you to define custom grouping attributes that determine how services are logically grouped based on telemetry attributes, Amazon Web Services tags, or predefined mappings. These grouping attributes can then be used to organize and filter services in the Application Signals console and APIs.

REPLACE aws.application_signals.grouping_configurations
SET
GroupingAttributeDefinitions = '{{ GroupingAttributeDefinitions }}'
WHERE
region = '{{ region }}' --required
AND GroupingAttributeDefinitions = '{{ GroupingAttributeDefinitions }}' --required
RETURNING
grouping_configuration;

DELETE examples

Deletes the grouping configuration for this account. This removes all custom grouping attribute definitions that were previously configured.

DELETE FROM aws.application_signals.grouping_configurations
WHERE region = '{{ region }}' --required
;