interface ValidityDateFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LicenseManager.Mixins.CfnLicensePropsMixin.ValidityDateFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslicensemanager/mixins#CfnLicensePropsMixin_ValidityDateFormatProperty |
Java | software.amazon.awscdk.mixins.preview.services.licensemanager.mixins.CfnLicensePropsMixin.ValidityDateFormatProperty |
Python | aws_cdk.mixins_preview.aws_licensemanager.mixins.CfnLicensePropsMixin.ValidityDateFormatProperty |
TypeScript | @aws-cdk/mixins-preview » aws_licensemanager » mixins » CfnLicensePropsMixin » ValidityDateFormatProperty |
Date and time range during which the license is valid, in ISO8601-UTC format.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as licensemanager_mixins } from '@aws-cdk/mixins-preview/aws-licensemanager';
const validityDateFormatProperty: licensemanager_mixins.CfnLicensePropsMixin.ValidityDateFormatProperty = {
begin: 'begin',
end: 'end',
};
Properties
| Name | Type | Description |
|---|---|---|
| begin? | string | Start of the time range. |
| end? | string | End of the time range. |
begin?
Type:
string
(optional)
Start of the time range.
end?
Type:
string
(optional)
End of the time range.

.NET
Go
Java
Python
TypeScript