Interface CfnEC2Fleet.CapacityRebalanceProperty

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

@Stability(Stable) public static interface CfnEC2Fleet.CapacityRebalanceProperty extends software.amazon.jsii.JsiiSerializable
The Spot Instance replacement strategy to use when Amazon EC2 emits a rebalance notification signal that your Spot Instance is at an elevated risk of being interrupted.

For more information, see Capacity rebalancing in the Amazon EC2 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.ec2.*;
 CapacityRebalanceProperty capacityRebalanceProperty = CapacityRebalanceProperty.builder()
         .replacementStrategy("replacementStrategy")
         .terminationDelay(123)
         .build();
 

See Also: