Package software.amazon.awscdk
Interface CfnResourceAutoScalingCreationPolicy
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceAutoScalingCreationPolicy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:09:57.295Z")
@Stability(Stable)
public interface CfnResourceAutoScalingCreationPolicy
extends software.amazon.jsii.JsiiSerializable
For an Auto Scaling group replacement update, specifies how many instances must signal success for the update to succeed.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
CfnResourceAutoScalingCreationPolicy cfnResourceAutoScalingCreationPolicy = CfnResourceAutoScalingCreationPolicy.builder()
.minSuccessfulInstancesPercent(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceAutoScalingCreationPolicystatic final classAn implementation forCfnResourceAutoScalingCreationPolicy -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMinSuccessfulInstancesPercent
Specifies the percentage of instances in an Auto Scaling replacement update that must signal success for the update to succeed.You can specify a value from 0 to 100. AWS CloudFormation rounds to the nearest tenth of a percent. For example, if you update five instances with a minimum successful percentage of 50, three instances must signal success. If an instance doesn't send a signal within the time specified by the Timeout property, AWS CloudFormation assumes that the instance wasn't created.
-
builder
-