Class: Aws::EMR::Types::InstanceFleetProvisioningSpecifications
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::InstanceFleetProvisioningSpecifications
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass InstanceFleetProvisioningSpecifications data as a hash:
{
spot_specification: { # required
timeout_duration_minutes: 1, # required
timeout_action: "SWITCH_TO_ON_DEMAND", # required, accepts SWITCH_TO_ON_DEMAND, TERMINATE_CLUSTER
block_duration_minutes: 1,
},
}
The launch specification for Spot instances in the fleet, which determines the defined duration and provisioning timeout behavior.
<note markdown=“1”> The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.
</note>
Instance Attribute Summary collapse
-
#spot_specification ⇒ Types::SpotProvisioningSpecification
The launch specification for Spot instances in the fleet, which determines the defined duration and provisioning timeout behavior.
Instance Attribute Details
#spot_specification ⇒ Types::SpotProvisioningSpecification
The launch specification for Spot instances in the fleet, which determines the defined duration and provisioning timeout behavior.
1994 1995 1996 1997 |
# File 'lib/aws-sdk-emr/types.rb', line 1994 class InstanceFleetProvisioningSpecifications < Struct.new( :spot_specification) include Aws::Structure end |