interface ScheduledEventsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCertificateAuthority.ScheduledEventsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCertificateAuthority_ScheduledEventsProperty |
Java | software.amazon.awscdk.services.eks.CfnCertificateAuthority.ScheduledEventsProperty |
Python | aws_cdk.aws_eks.CfnCertificateAuthority.ScheduledEventsProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCertificateAuthority » ScheduledEventsProperty |
The scheduled auto-activation events for the certificate authority, computed from its validity window.
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 scheduledEventsProperty: eks.CfnCertificateAuthority.ScheduledEventsProperty = {
finalAutoActivation: 'finalAutoActivation',
firstAutoActivation: 'firstAutoActivation',
};
Properties
| Name | Type | Description |
|---|---|---|
| final | string | The deadline by which EKS will auto-activate this certificate authority (notAfter minus 45 days). |
| first | string | The earliest date EKS may auto-activate this certificate authority (notAfter minus 6 months). |
finalAutoActivation?
Type:
string
(optional)
The deadline by which EKS will auto-activate this certificate authority (notAfter minus 45 days).
firstAutoActivation?
Type:
string
(optional)
The earliest date EKS may auto-activate this certificate authority (notAfter minus 6 months).

.NET
Go
Java
Python
TypeScript