Class CfnCertificateAuthority.ScheduledEventsProperty
The scheduled auto-activation events for the certificate authority, computed from its validity window.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCertificateAuthority.ScheduledEventsProperty : CfnCertificateAuthority.IScheduledEventsProperty
Syntax (vb)
Public Class CfnCertificateAuthority.ScheduledEventsProperty Implements CfnCertificateAuthority.IScheduledEventsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var scheduledEventsProperty = new ScheduledEventsProperty {
FinalAutoActivation = "finalAutoActivation",
FirstAutoActivation = "firstAutoActivation"
};
Synopsis
Constructors
| ScheduledEventsProperty() | The scheduled auto-activation events for the certificate authority, computed from its validity window. |
Properties
| FinalAutoActivation | The deadline by which EKS will auto-activate this certificate authority (notAfter minus 45 days). |
| FirstAutoActivation | The earliest date EKS may auto-activate this certificate authority (notAfter minus 6 months). |
Constructors
ScheduledEventsProperty()
The scheduled auto-activation events for the certificate authority, computed from its validity window.
public ScheduledEventsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var scheduledEventsProperty = new ScheduledEventsProperty {
FinalAutoActivation = "finalAutoActivation",
FirstAutoActivation = "firstAutoActivation"
};
Properties
FinalAutoActivation
The deadline by which EKS will auto-activate this certificate authority (notAfter minus 45 days).
public string? FinalAutoActivation { get; set; }
Property Value
Remarks
FirstAutoActivation
The earliest date EKS may auto-activate this certificate authority (notAfter minus 6 months).
public string? FirstAutoActivation { get; set; }