Interface CfnCluster.InstanceFleetResizingSpecificationsProperty

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

@Stability(Stable) public static interface CfnCluster.InstanceFleetResizingSpecificationsProperty extends software.amazon.jsii.JsiiSerializable
The resize specification for On-Demand and Spot Instances in the fleet.

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.*;
 InstanceFleetResizingSpecificationsProperty instanceFleetResizingSpecificationsProperty = InstanceFleetResizingSpecificationsProperty.builder()
         .onDemandResizeSpecification(OnDemandResizingSpecificationProperty.builder()
                 .allocationStrategy("allocationStrategy")
                 .capacityReservationOptions(OnDemandCapacityReservationOptionsProperty.builder()
                         .capacityReservationPreference("capacityReservationPreference")
                         .capacityReservationResourceGroupArn("capacityReservationResourceGroupArn")
                         .usageStrategy("usageStrategy")
                         .build())
                 .timeoutDurationMinutes(123)
                 .build())
         .spotResizeSpecification(SpotResizingSpecificationProperty.builder()
                 .allocationStrategy("allocationStrategy")
                 .timeoutDurationMinutes(123)
                 .build())
         .build();
 

See Also: