Interface CfnInstanceFleetConfig.SpotResizingSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstanceFleetConfig.SpotResizingSpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnInstanceFleetConfig
@Stability(Stable)
public static interface CfnInstanceFleetConfig.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstanceFleetConfig.SpotResizingSpecificationProperty
static final class
An implementation forCfnInstanceFleetConfig.SpotResizingSpecificationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllocationStrategy
Specifies the allocation strategy to use to launch Spot instances during a resize.If you run Amazon EMR releases 6.9.0 or higher, the default is
price-capacity-optimized
. If you run Amazon EMR releases 6.8.0 or lower, the default iscapacity-optimized
. -
getTimeoutDurationMinutes
Spot resize timeout in minutes.If Spot Instances are not provisioned within this time, the resize workflow will stop provisioning of Spot instances. Minimum value is 5 minutes and maximum value is 10,080 minutes (7 days). The timeout applies to all resize workflows on the Instance Fleet. The resize could be triggered by Amazon EMR Managed Scaling or by the customer (via Amazon EMR Console, Amazon EMR CLI modify-instance-fleet or Amazon EMR SDK ModifyInstanceFleet API) or by Amazon EMR due to Amazon EC2 Spot Reclamation.
-
builder
@Stability(Stable) static CfnInstanceFleetConfig.SpotResizingSpecificationProperty.Builder builder()
-