Interface CfnCluster.OnDemandResizingSpecificationProperty

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

@Stability(Stable) public static interface CfnCluster.OnDemandResizingSpecificationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 OnDemandResizingSpecificationProperty onDemandResizingSpecificationProperty = OnDemandResizingSpecificationProperty.builder()
         .allocationStrategy("allocationStrategy")
         .capacityReservationOptions(OnDemandCapacityReservationOptionsProperty.builder()
                 .capacityReservationPreference("capacityReservationPreference")
                 .capacityReservationResourceGroupArn("capacityReservationResourceGroupArn")
                 .usageStrategy("usageStrategy")
                 .build())
         .timeoutDurationMinutes(123)
         .build();
 

See Also: