Show / Hide Table of Contents

Class CfnCertificateAuthority.ScheduledEventsProperty

The scheduled auto-activation events for the certificate authority, computed from its validity window.

Inheritance
object
CfnCertificateAuthority.ScheduledEventsProperty
Implements
CfnCertificateAuthority.IScheduledEventsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-certificateauthority-scheduledevents.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-certificateauthority-scheduledevents.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-certificateauthority-scheduledevents.html#cfn-eks-certificateauthority-scheduledevents-finalautoactivation

FirstAutoActivation

The earliest date EKS may auto-activate this certificate authority (notAfter minus 6 months).

public string? FirstAutoActivation { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-certificateauthority-scheduledevents.html#cfn-eks-certificateauthority-scheduledevents-firstautoactivation

Implements

CfnCertificateAuthority.IScheduledEventsProperty
Back to top Generated by DocFX