Interface CfnScheduledQueryPropsMixin.NotificationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQueryPropsMixin.NotificationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQueryPropsMixin
@Stability(Stable)
public static interface CfnScheduledQueryPropsMixin.NotificationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Notification configuration for a scheduled query.
A notification is sent by Timestream when a scheduled query is created, its state is updated or when it is deleted.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.timestream.mixins.*;
NotificationConfigurationProperty notificationConfigurationProperty = NotificationConfigurationProperty.builder()
.snsConfiguration(SnsConfigurationProperty.builder()
.topicArn("topicArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnScheduledQueryPropsMixin.NotificationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSnsConfiguration
Details on SNS configuration.Returns union: either
IResolvableorCfnScheduledQueryPropsMixin.SnsConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnScheduledQueryPropsMixin.NotificationConfigurationProperty.Builder builder()
-