Method: Aws::AutoScaling::Types::RefreshPreferences#checkpoint_delay
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
#checkpoint_delay ⇒ Integer
(Optional) The amount of time, in seconds, to wait after a checkpoint before continuing. This property is optional, but if you specify a value for it, you must also specify a value for ‘CheckpointPercentages`. If you specify a value for `CheckpointPercentages` and not for `CheckpointDelay`, the `CheckpointDelay` defaults to `3600` (1 hour).
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 |