Interface CfnEventSubscriptionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventSubscriptionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:16.631Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventSubscriptionPropsstatic final classAn 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.BuilderofCfnEventSubscriptionProps
-