Interface CloudFormationStackNotificationCheckProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RuleProps
- All Known Implementing Classes:
CloudFormationStackNotificationCheckProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.614Z")
@Stability(Stable)
public interface CloudFormationStackNotificationCheckProps
extends software.amazon.jsii.JsiiSerializable, RuleProps
Construction properties for a CloudFormationStackNotificationCheck.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCloudFormationStackNotificationCheckProps
static final class
An implementation forCloudFormationStackNotificationCheckProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.config.RuleProps
getConfigRuleName, getDescription, getInputParameters, getMaximumExecutionFrequency, getRuleScope
-
Method Details
-
getTopics
A list of allowed topics.At most 5 topics.
Default: - No topics.
-
builder
-