Interface CfnNotificationConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNotificationConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:09.819Z")
@Stability(Stable)
public interface CfnNotificationConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnNotificationConfiguration.
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.notifications.*;
CfnNotificationConfigurationProps cfnNotificationConfigurationProps = CfnNotificationConfigurationProps.builder()
.description("description")
.name("name")
// the properties below are optional
.aggregationDuration("aggregationDuration")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNotificationConfigurationPropsstatic final classAn implementation forCfnNotificationConfigurationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of theNotificationConfiguration.- See Also:
-
getName
The name of theNotificationConfiguration.Supports RFC 3986's unreserved characters.
- See Also:
-
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:
-
getTags
A map of tags assigned to aNotificationConfiguration.- See Also:
-
builder
-