@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.739Z") @Stability(value=Stable) public interface CloudFormationStackNotificationCheckProps extends software.amazon.jsii.JsiiSerializable, RuleProps
Example:
// topics to which CloudFormation stacks may send event notifications
Topic topic1 = new Topic(this, "AllowedTopic1");
Topic topic2 = new Topic(this, "AllowedTopic2");
// non-compliant if CloudFormation stack does not send notifications to 'topic1' or 'topic2'
// non-compliant if CloudFormation stack does not send notifications to 'topic1' or 'topic2'
CloudFormationStackNotificationCheck.Builder.create(this, "NotificationCheck")
.topics(List.of(topic1, topic2))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CloudFormationStackNotificationCheckProps.Builder
A builder for
CloudFormationStackNotificationCheckProps |
static class |
CloudFormationStackNotificationCheckProps.Jsii$Proxy
An implementation for
CloudFormationStackNotificationCheckProps |
| Modifier and Type | Method and Description |
|---|---|
static CloudFormationStackNotificationCheckProps.Builder |
builder() |
default List<ITopic> |
getTopics()
A list of allowed topics.
|
getConfigRuleName, getDescription, getInputParameters, getMaximumExecutionFrequency, getRuleScope@Stability(value=Stable) @Nullable default List<ITopic> getTopics()
At most 5 topics.
Default: - No topics.
@Stability(value=Stable) static CloudFormationStackNotificationCheckProps.Builder builder()
builder in interface RulePropsCloudFormationStackNotificationCheckProps.Builder of CloudFormationStackNotificationCheckPropsCopyright © 2022. All rights reserved.