Interface CfnEventSubscriptionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventSubscriptionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:04.841Z")
@Stability(Stable)
public interface CfnEventSubscriptionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEventSubscription
.
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.neptune.*; CfnEventSubscriptionProps cfnEventSubscriptionProps = CfnEventSubscriptionProps.builder() .enabled(false) .eventCategories(List.of("eventCategories")) .snsTopicArn("snsTopicArn") .sourceIds(List.of("sourceIds")) .sourceType("sourceType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEventSubscriptionProps
static final class
An implementation forCfnEventSubscriptionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
A Boolean value indicating if the subscription is enabled.True indicates the subscription is enabled.
- See Also:
-
getEventCategories
- See Also:
-
getSnsTopicArn
The topic ARN of the event notification subscription.- See Also:
-
getSourceIds
- See Also:
-
getSourceType
The source type for the event notification subscription.- See Also:
-
builder
- Returns:
- a
CfnEventSubscriptionProps.Builder
ofCfnEventSubscriptionProps
-