Interface CfnAutoScalingGroup.InstanceMaintenancePolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAutoScalingGroup.InstanceMaintenancePolicyProperty.Jsii$Proxy
Enclosing class:
CfnAutoScalingGroup

@Stability(Stable) public static interface CfnAutoScalingGroup.InstanceMaintenancePolicyProperty extends software.amazon.jsii.JsiiSerializable
InstanceMaintenancePolicy is a property of the AWS::AutoScaling::AutoScalingGroup resource.

For more information, see Instance maintenance policies in the Amazon EC2 Auto Scaling User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.autoscaling.*;
 InstanceMaintenancePolicyProperty instanceMaintenancePolicyProperty = InstanceMaintenancePolicyProperty.builder()
         .maxHealthyPercentage(123)
         .minHealthyPercentage(123)
         .build();
 

See Also: