Class: Aws::EMR::Types::InstanceFleetProvisioningSpecifications

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-emr/types.rb

Overview

The launch specification for On-Demand and Spot Instances in the fleet.

<note markdown=“1”> The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions. On-Demand and Spot instance allocation strategies are available in Amazon EMR releases 5.12.1 and later.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#on_demand_specificationTypes::OnDemandProvisioningSpecification

The launch specification for On-Demand Instances in the instance fleet, which determines the allocation strategy and capacity reservation options.

<note markdown=“1”> The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions. On-Demand Instances allocation strategy is available in Amazon EMR releases 5.12.1 and later.

</note>


2578
2579
2580
2581
2582
2583
# File 'lib/aws-sdk-emr/types.rb', line 2578

class InstanceFleetProvisioningSpecifications < Struct.new(
  :spot_specification,
  :on_demand_specification)
  SENSITIVE = []
  include Aws::Structure
end

#spot_specificationTypes::SpotProvisioningSpecification

The launch specification for Spot instances in the fleet, which determines the allocation strategy, defined duration, and provisioning timeout behavior.



2578
2579
2580
2581
2582
2583
# File 'lib/aws-sdk-emr/types.rb', line 2578

class InstanceFleetProvisioningSpecifications < Struct.new(
  :spot_specification,
  :on_demand_specification)
  SENSITIVE = []
  include Aws::Structure
end