interface RollbackConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnClusterPropsMixin.RollbackConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnClusterPropsMixin_RollbackConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnClusterPropsMixin.RollbackConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnClusterPropsMixin.RollbackConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnClusterPropsMixin » RollbackConfigProperty |
The rollback configuration to use for the cluster version rollback.
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/cfn-property-mixins';
const rollbackConfigProperty: eks.CfnClusterPropsMixin.RollbackConfigProperty = {
timeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| timeout | number | The timeout in minutes for the version rollback operation. |
timeoutMinutes?
Type:
number
(optional)
The timeout in minutes for the version rollback operation.
If not specified, defaults to 720 minutes (12 hours).

.NET
Go
Java
Python
TypeScript