interface ValidityProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ACMPCA.CfnCertificate.ValidityProperty |
Java | software.amazon.awscdk.services.acmpca.CfnCertificate.ValidityProperty |
Python | aws_cdk.aws_acmpca.CfnCertificate.ValidityProperty |
TypeScript | @aws-cdk/aws-acmpca » CfnCertificate » 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 * as acmpca from '@aws-cdk/aws-acmpca';
const validityProperty: acmpca.CfnCertificate.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
Specifies whether the Value
parameter represents days, months, or years.
value
Type:
number
A long integer interpreted according to the value of Type
, below.