Interface CfnGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:06.387Z")
@Stability(Stable)
public interface CfnGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.xray.*;
CfnGroupMixinProps cfnGroupMixinProps = CfnGroupMixinProps.builder()
.filterExpression("filterExpression")
.groupName("groupName")
.insightsConfiguration(InsightsConfigurationProperty.builder()
.insightsEnabled(false)
.notificationsEnabled(false)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGroupMixinPropsstatic final classAn implementation forCfnGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGroupMixinProps.Builderbuilder()default StringThe filter expression defining the parameters to include traces.default StringThe unique case-sensitive name of the group.default ObjectThe 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
-
getFilterExpression
The filter expression defining the parameters to include traces.- See Also:
-
getGroupName
The unique case-sensitive name of the group.- See Also:
-
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.
Returns union: either
IResolvableorCfnGroupPropsMixin.InsightsConfigurationProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnGroupMixinProps.BuilderofCfnGroupMixinProps
-