Interface CfnSpotFleet.SpotMaintenanceStrategiesProperty

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

@Stability(Stable) public static interface CfnSpotFleet.SpotMaintenanceStrategiesProperty extends software.amazon.jsii.JsiiSerializable
The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

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

See Also: