grouping_configurations
Creates, updates, deletes, gets or lists a grouping_configurations resource.
Overview
| Name | grouping_configurations |
| Type | Resource |
| Id | aws.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
put_grouping_configuration | replace | region, GroupingAttributeDefinitions | 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. | |
delete_grouping_configuration | delete | region | Deletes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_grouping_configuration
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
- delete_grouping_configuration
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
;