Interface CfnSupportPermit.ConditionProperty

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

@Stability(Stable) public static interface CfnSupportPermit.ConditionProperty extends software.amazon.jsii.JsiiSerializable
A time-bound condition controlling when the permit is active.

Exactly one of AllowAfter or AllowBefore must be provided.

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.supportauthz.*;
 ConditionProperty conditionProperty = ConditionProperty.builder()
         .allowAfter("allowAfter")
         .allowBefore("allowBefore")
         .build();
 

See Also: