interface ConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SupportAuthZ.CfnSupportPermit.ConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssupportauthz#CfnSupportPermit_ConditionProperty |
Java | software.amazon.awscdk.services.supportauthz.CfnSupportPermit.ConditionProperty |
Python | aws_cdk.aws_supportauthz.CfnSupportPermit.ConditionProperty |
TypeScript | aws-cdk-lib » aws_supportauthz » CfnSupportPermit » ConditionProperty |
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 { aws_supportauthz as supportauthz } from 'aws-cdk-lib';
const conditionProperty: supportauthz.CfnSupportPermit.ConditionProperty = {
allowAfter: 'allowAfter',
allowBefore: 'allowBefore',
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | string | The permit is active only after this time. |
| allow | string | The permit is active only before this time. |
allowAfter?
Type:
string
(optional)
The permit is active only after this time.
allowBefore?
Type:
string
(optional)
The permit is active only before this time.

.NET
Go
Java
Python
TypeScript