Class: Aws::EKS::Types::RollbackConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::RollbackConfig
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
The rollback configuration for the cluster version rollback.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timeout_minutes ⇒ Integer
The length of time in minutes to wait before cancelling the update.
Instance Attribute Details
#timeout_minutes ⇒ Integer
The length of time in minutes to wait before cancelling the update.
Timeout is a minimum-bound property, meaning the timeout occurs no
sooner than the time you specify, but can occur shortly thereafter.
This value can be between 120 (2 hours) and 10080 (7 days). Default:
720 (12 hours) if not specified.
7492 7493 7494 7495 7496 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 7492 class RollbackConfig < Struct.new( :timeout_minutes) SENSITIVE = [] include Aws::Structure end |