interface ValidityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ACMPCA.CfnCertificatePropsMixin.ValidityProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsacmpca#CfnCertificatePropsMixin_ValidityProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.acmpca.CfnCertificatePropsMixin.ValidityProperty |
Python | aws_cdk.cfn_property_mixins.aws_acmpca.CfnCertificatePropsMixin.ValidityProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_acmpca » CfnCertificatePropsMixin » ValidityProperty |
Length of time for which the certificate issued by your private certificate authority (CA), or by the private CA itself, is valid in days, months, or years.
You can issue a certificate by calling the IssueCertificate operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_acmpca as acmpca } from '@aws-cdk/cfn-property-mixins';
const validityProperty: acmpca.CfnCertificatePropsMixin.ValidityProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | Specifies whether the Value parameter represents days, months, or years. |
| value? | number | A long integer interpreted according to the value of Type , below. |
type?
Type:
string
(optional)
Specifies whether the Value parameter represents days, months, or years.
value?
Type:
number
(optional)
A long integer interpreted according to the value of Type , below.

.NET
Go
Java
Python
TypeScript