Interface CfnScheduledQuery.NotificationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQuery.NotificationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQuery
@Stability(Stable)
public static interface CfnScheduledQuery.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.services.timestream.*;
NotificationConfigurationProperty notificationConfigurationProperty = NotificationConfigurationProperty.builder()
.snsConfiguration(SnsConfigurationProperty.builder()
.topicArn("topicArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduledQuery.NotificationConfigurationPropertystatic final classAn implementation forCfnScheduledQuery.NotificationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSnsConfiguration
Details on SNS configuration.Returns union: either
IResolvableorCfnScheduledQuery.SnsConfigurationProperty- See Also:
-
builder
-