AWSAutoScalingRefreshPreferences
Objective-C
@interface AWSAutoScalingRefreshPreferences
Swift
class AWSAutoScalingRefreshPreferences
Describes information used to start an instance refresh.
-
The number of seconds until a newly launched instance is configured and ready to use. During this time, Amazon EC2 Auto Scaling does not immediately move on to the next replacement. The default is to use the value for the health check grace period defined for the group.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable instanceWarmup;
Swift
var instanceWarmup: NSNumber? { get set }
-
The amount of capacity in the Auto Scaling group that must remain healthy during an instance refresh to allow the operation to continue, as a percentage of the desired capacity of the Auto Scaling group (rounded up to the nearest integer). The default is
90
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable minHealthyPercentage;
Swift
var minHealthyPercentage: NSNumber? { get set }