Show / Hide Table of Contents

Class CfnCluster.RollbackConfigProperty

The rollback configuration to use for the cluster version rollback.

Inheritance
object
CfnCluster.RollbackConfigProperty
Implements
CfnCluster.IRollbackConfigProperty
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 CfnCluster.RollbackConfigProperty : CfnCluster.IRollbackConfigProperty
Syntax (vb)
Public Class CfnCluster.RollbackConfigProperty Implements CfnCluster.IRollbackConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-rollbackconfig.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 rollbackConfigProperty = new RollbackConfigProperty {
                 TimeoutMinutes = 123
             };

Synopsis

Constructors

RollbackConfigProperty()

The rollback configuration to use for the cluster version rollback.

Properties

TimeoutMinutes

The timeout in minutes for the version rollback operation.

Constructors

RollbackConfigProperty()

The rollback configuration to use for the cluster version rollback.

public RollbackConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-rollbackconfig.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 rollbackConfigProperty = new RollbackConfigProperty {
                 TimeoutMinutes = 123
             };

Properties

TimeoutMinutes

The timeout in minutes for the version rollback operation.

public double? TimeoutMinutes { get; set; }
Property Value

double?

Remarks

If not specified, defaults to 720 minutes (12 hours).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-rollbackconfig.html#cfn-eks-cluster-rollbackconfig-timeoutminutes

Implements

CfnCluster.IRollbackConfigProperty
Back to top Generated by DocFX