interface ValidityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ACMPCA.Mixins.CfnCertificatePropsMixin.ValidityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsacmpca/mixins#CfnCertificatePropsMixin_ValidityProperty |
Java | software.amazon.awscdk.mixins.preview.services.acmpca.mixins.CfnCertificatePropsMixin.ValidityProperty |
Python | aws_cdk.mixins_preview.aws_acmpca.mixins.CfnCertificatePropsMixin.ValidityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_acmpca » mixins » 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 { mixins as acmpca_mixins } from '@aws-cdk/mixins-preview/aws-acmpca';
const validityProperty: acmpca_mixins.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