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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGroupProps
static final class
An implementation forCfnGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGroupProps.Builder
builder()
default String
The filter expression defining the parameters to include traces.The unique case-sensitive name of the group.default Object
The structure containing configurations related to insights.getTags()
An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroupName
The unique case-sensitive name of the group. -
getFilterExpression
The filter expression defining the parameters to include traces. -
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
An array of key-value pairs to apply to this resource. -
builder
- Returns:
- a
CfnGroupProps.Builder
ofCfnGroupProps
-