Method: Aws::AutoScaling::Types::RefreshPreferences#skip_matching
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
#skip_matching ⇒ Boolean
(Optional) Indicates whether skip matching is enabled. If enabled (‘true`), then Amazon EC2 Auto Scaling skips replacing instances that match the desired configuration. If no desired configuration is specified, then it skips replacing instances that have the same launch template and instance types that the Auto Scaling group was using before the start of the instance refresh. The default is `false`.
For more information, see [Use an instance refresh with skip matching] in the *Amazon EC2 Auto Scaling User Guide*.
[1]: docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh-skip-matching.html
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 |