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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSupportPermit.ConditionPropertystatic final classAn implementation forCfnSupportPermit.ConditionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowAfter
The permit is active only after this time.- See Also:
-
getAllowBefore
The permit is active only before this time.- See Also:
-
builder
-