Module: AWSCDK::StepFunctionsTasks::EMRCreateCluster::OnDemandAllocationStrategy

Defined in:
step_functions_tasks/emr_create_cluster.rb

Overview

On-Demand Allocation Strategies.

Specifies the strategy to use in launching On-Demand instance fleets. Currently, the only option is "lowest-price" (the default), which launches the lowest price first.

Constant Summary collapse

LOWEST_PRICE =
Deprecated.
Note:

Default:

Lowest-price, which launches instances from the lowest priced pool that has available capacity.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.OnDemandAllocationStrategy", "LOWEST_PRICE")
PRIORITIZED =
Deprecated.
Note:

Default:

Prioritized, which launches instances based on the priority that you assign to each instance type configuration.

When using this strategy, you must configure the priority for at least one instance type in the fleet.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.OnDemandAllocationStrategy", "PRIORITIZED")