Module: AWSCDK::StepFunctionsTasks::EMRCreateCluster::SpotAllocationStrategy

Defined in:
step_functions_tasks/emr_create_cluster.rb

Overview

Spot Allocation Strategies.

Specifies the strategy to use in launching Spot Instance fleets. For example, "capacity-optimized" launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

Constant Summary collapse

CAPACITY_OPTIMIZED =
Deprecated.
Note:

Default:

Capacity-optimized, which launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.SpotAllocationStrategy", "CAPACITY_OPTIMIZED")
PRICE_CAPACITY_OPTIMIZED =
Deprecated.
Note:

Default:

Price-capacity-optimized, which launches instances from Spot Instance pools with the highest capacity availability for the number of instances that are launching.

Recommended.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.SpotAllocationStrategy", "PRICE_CAPACITY_OPTIMIZED")
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.SpotAllocationStrategy", "LOWEST_PRICE")
DIVERSIFIED =
Deprecated.
Note:

Default:

Diversified, which launches instances across all Spot capacity pools.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.SpotAllocationStrategy", "DIVERSIFIED")