Interface CfnSpotFleet.SpotCapacityRebalanceProperty

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

@Stability(Stable) public static interface CfnSpotFleet.SpotCapacityRebalanceProperty extends software.amazon.jsii.JsiiSerializable
The Spot Instance replacement strategy to use when Amazon EC2 emits a 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 for Linux Instances .

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.*;
 SpotCapacityRebalanceProperty spotCapacityRebalanceProperty = SpotCapacityRebalanceProperty.builder()
         .replacementStrategy("replacementStrategy")
         .terminationDelay(123)
         .build();
 

See Also: