Interface CfnNotificationConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNotificationConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.901Z")
@Stability(Stable)
public interface CfnNotificationConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnNotificationConfigurationPropsMixin.
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.notifications.*;
CfnNotificationConfigurationMixinProps cfnNotificationConfigurationMixinProps = CfnNotificationConfigurationMixinProps.builder()
.aggregationDuration("aggregationDuration")
.description("description")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNotificationConfigurationMixinPropsstatic final classAn implementation forCfnNotificationConfigurationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe aggregation preference of theNotificationConfiguration.default StringThe description of theNotificationConfiguration.default StringgetName()The name of theNotificationConfiguration.getTags()A map of tags assigned to aNotificationConfiguration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregationDuration
The aggregation preference of theNotificationConfiguration.- Values:
LONG- Aggregate notifications for long periods of time (12 hours).
SHORT- Aggregate notifications for short periods of time (5 minutes).
NONE- Don't aggregate notifications.
- See Also:
-
getDescription
The description of theNotificationConfiguration.- See Also:
-
getName
The name of theNotificationConfiguration.Supports RFC 3986's unreserved characters.
- See Also:
-
getTags
A map of tags assigned to aNotificationConfiguration.- See Also:
-
builder
-