Method: Aws::AutoScaling::Types::RefreshPreferences#instance_warmup
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
#instance_warmup ⇒ Integer
A time period, in seconds, during which an instance refresh waits before moving on to replacing the next instance after a new instance enters the ‘InService` state.
This property is not required for normal usage. Instead, use the ‘DefaultInstanceWarmup` property of the Auto Scaling group. The `InstanceWarmup` and `DefaultInstanceWarmup` properties work the same way. Only specify this property if you must override the `DefaultInstanceWarmup` property.
If you do not specify this property, the instance warmup by default is the value of the ‘DefaultInstanceWarmup` property, if defined (which is recommended in all cases), or the `HealthCheckGracePeriod` property otherwise.
6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 6830 class RefreshPreferences < Struct.new( :min_healthy_percentage, :instance_warmup, :checkpoint_percentages, :checkpoint_delay, :skip_matching, :auto_rollback, :scale_in_protected_instances, :standby_instances, :alarm_specification, :max_healthy_percentage, :bake_time) SENSITIVE = [] include Aws::Structure end |