Interface CfnCluster.SpotResizingSpecificationProperty

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

@Stability(Stable) public static interface CfnCluster.SpotResizingSpecificationProperty extends software.amazon.jsii.JsiiSerializable
The resize specification for Spot Instances in the instance fleet, which contains the resize timeout period.

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.emr.*;
 SpotResizingSpecificationProperty spotResizingSpecificationProperty = SpotResizingSpecificationProperty.builder()
         .allocationStrategy("allocationStrategy")
         .timeoutDurationMinutes(123)
         .build();
 

See Also: