Interface CommonConstraintOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
CloudFormationRuleConstraintOptions, StackSetsConstraintOptions, TagUpdateConstraintOptions
All Known Implementing Classes:
CloudFormationRuleConstraintOptions.Jsii$Proxy, CommonConstraintOptions.Jsii$Proxy, StackSetsConstraintOptions.Jsii$Proxy, TagUpdateConstraintOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:13.929Z") @Stability(Stable) public interface CommonConstraintOptions extends software.amazon.jsii.JsiiSerializable
Properties for governance mechanisms and constraints.

Example:

 import software.amazon.awscdk.services.sns.*;
 Portfolio portfolio;
 CloudFormationProduct product;
 Topic topic1 = new Topic(this, "Topic1");
 portfolio.notifyOnStackEvents(product, topic1);
 Topic topic2 = new Topic(this, "Topic2");
 portfolio.notifyOnStackEvents(product, topic2, CommonConstraintOptions.builder()
         .description("description for topic2")
         .build());