@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-23T14:40:40.445Z") @Stability(value=Stable) public interface CfnEventSubscriptionProps extends software.amazon.jsii.JsiiSerializable
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.redshift.*;
CfnEventSubscriptionProps cfnEventSubscriptionProps = CfnEventSubscriptionProps.builder()
.subscriptionName("subscriptionName")
// the properties below are optional
.enabled(false)
.eventCategories(List.of("eventCategories"))
.severity("severity")
.snsTopicArn("snsTopicArn")
.sourceIds(List.of("sourceIds"))
.sourceType("sourceType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEventSubscriptionProps.Builder
A builder for
CfnEventSubscriptionProps |
static class |
CfnEventSubscriptionProps.Jsii$Proxy
An implementation for
CfnEventSubscriptionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEventSubscriptionProps.Builder |
builder() |
default Object |
getEnabled()
`AWS::Redshift::EventSubscription.Enabled`.
|
default List<String> |
getEventCategories()
`AWS::Redshift::EventSubscription.EventCategories`.
|
default String |
getSeverity()
`AWS::Redshift::EventSubscription.Severity`.
|
default String |
getSnsTopicArn()
`AWS::Redshift::EventSubscription.SnsTopicArn`.
|
default List<String> |
getSourceIds()
`AWS::Redshift::EventSubscription.SourceIds`.
|
default String |
getSourceType()
`AWS::Redshift::EventSubscription.SourceType`.
|
String |
getSubscriptionName()
`AWS::Redshift::EventSubscription.SubscriptionName`.
|
default List<CfnTag> |
getTags()
`AWS::Redshift::EventSubscription.Tags`.
|
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default List<String> getEventCategories()
@Stability(value=Stable) @Nullable default String getSeverity()
@Stability(value=Stable) @Nullable default String getSnsTopicArn()
@Stability(value=Stable) @Nullable default List<String> getSourceIds()
@Stability(value=Stable) @Nullable default String getSourceType()
@Stability(value=Stable) @NotNull String getSubscriptionName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnEventSubscriptionProps.Builder builder()
CfnEventSubscriptionProps.Builder of CfnEventSubscriptionPropsCopyright © 2021. All rights reserved.