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.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.790Z") @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());