Interface CfnSafetyRule.RuleConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSafetyRule.RuleConfigProperty.Jsii$Proxy
Enclosing class:
CfnSafetyRule

@Stability(Stable) public static interface CfnSafetyRule.RuleConfigProperty extends software.amazon.jsii.JsiiSerializable
The rule configuration for an assertion rule.

That is, the criteria that you set for specific assertion controls (routing controls) that specify how many controls must be enabled after a transaction completes.

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.route53recoverycontrol.*;
 RuleConfigProperty ruleConfigProperty = RuleConfigProperty.builder()
         .inverted(false)
         .threshold(123)
         .type("type")
         .build();
 

See Also: