Interface CfnGroupingConfiguration.GroupingAttributeDefinitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGroupingConfiguration.GroupingAttributeDefinitionProperty.Jsii$Proxy
Enclosing class:
CfnGroupingConfiguration

@Stability(Stable) public static interface CfnGroupingConfiguration.GroupingAttributeDefinitionProperty extends software.amazon.jsii.JsiiSerializable
A structure that defines how services should be grouped based on specific attributes.

This includes the friendly name for the grouping, the source keys to derive values from, and an optional default value.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.applicationsignals.*;
 GroupingAttributeDefinitionProperty groupingAttributeDefinitionProperty = GroupingAttributeDefinitionProperty.builder()
         .groupingName("groupingName")
         .groupingSourceKeys(List.of("groupingSourceKeys"))
         // the properties below are optional
         .defaultGroupingValue("defaultGroupingValue")
         .build();
 

See Also: