Interface CfnGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.671Z") @Stability(Stable) public interface CfnGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnGroup.

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.xray.*;
 Object tags;
 CfnGroupProps cfnGroupProps = CfnGroupProps.builder()
         .groupName("groupName")
         // the properties below are optional
         .filterExpression("filterExpression")
         .insightsConfiguration(InsightsConfigurationProperty.builder()
                 .insightsEnabled(false)
                 .notificationsEnabled(false)
                 .build())
         .tags(List.of(tags))
         .build();
 
  • Method Details

    • getGroupName

      @Stability(Stable) @NotNull String getGroupName()
      The unique case-sensitive name of the group.
    • getFilterExpression

      @Stability(Stable) @Nullable default String getFilterExpression()
      The filter expression defining the parameters to include traces.
    • getInsightsConfiguration

      @Stability(Stable) @Nullable default Object getInsightsConfiguration()
      The structure containing configurations related to insights.

      • The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
      • The NotificationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
    • getTags

      @Stability(Stable) @Nullable default List<Object> getTags()
      An array of key-value pairs to apply to this resource.
    • builder

      @Stability(Stable) static CfnGroupProps.Builder builder()
      Returns:
      a CfnGroupProps.Builder of CfnGroupProps