interface ValidityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCertificateAuthority.ValidityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCertificateAuthority_ValidityProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCertificateAuthority.ValidityProperty |
Python | aws_cdk.aws_eks_v2.CfnCertificateAuthority.ValidityProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCertificateAuthority » ValidityProperty |
The validity period of the certificate authority.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks_v2 as eks_v2 } from 'aws-cdk-lib';
const validityProperty: eks_v2.CfnCertificateAuthority.ValidityProperty = {
notAfter: 'notAfter',
notBefore: 'notBefore',
};
Properties
| Name | Type | Description |
|---|---|---|
| not | string | The end of the validity period for the certificate authority. |
| not | string | The start of the validity period for the certificate authority. |
notAfter?
Type:
string
(optional)
The end of the validity period for the certificate authority.
notBefore?
Type:
string
(optional)
The start of the validity period for the certificate authority.

.NET
Go
Java
Python
TypeScript