interface ValidityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCertificateAuthority.ValidityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCertificateAuthority_ValidityProperty |
Java | software.amazon.awscdk.services.eks.CfnCertificateAuthority.ValidityProperty |
Python | aws_cdk.aws_eks.CfnCertificateAuthority.ValidityProperty |
TypeScript | aws-cdk-lib » aws_eks » 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 as eks } from 'aws-cdk-lib';
const validityProperty: eks.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