Class: Aws::EC2::Types::SpotOptions

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

Overview

Describes the configuration of Spot Instances in an EC2 Fleet.

Instance Attribute Summary collapse

Instance Attribute Details

#allocation_strategyString

Indicates how to allocate the target capacity across the Spot pools specified by the Spot Fleet request. The default is ‘lowest-price`.

Returns:

  • (String)


34563
34564
34565
34566
34567
34568
34569
34570
34571
# File 'lib/aws-sdk-ec2/types.rb', line 34563

class SpotOptions < Struct.new(
  :allocation_strategy,
  :instance_interruption_behavior,
  :instance_pools_to_use_count,
  :single_instance_type,
  :single_availability_zone,
  :min_target_capacity)
  include Aws::Structure
end

#instance_interruption_behaviorString

The behavior when a Spot Instance is interrupted. The default is ‘terminate`.

Returns:

  • (String)


34563
34564
34565
34566
34567
34568
34569
34570
34571
# File 'lib/aws-sdk-ec2/types.rb', line 34563

class SpotOptions < Struct.new(
  :allocation_strategy,
  :instance_interruption_behavior,
  :instance_pools_to_use_count,
  :single_instance_type,
  :single_availability_zone,
  :min_target_capacity)
  include Aws::Structure
end

#instance_pools_to_use_countInteger

The number of Spot pools across which to allocate your target Spot capacity. Valid only when AllocationStrategy is set to ‘lowestPrice`. EC2 Fleet selects the cheapest Spot pools and evenly allocates your target Spot capacity across the number of Spot pools that you specify.

Returns:

  • (Integer)


34563
34564
34565
34566
34567
34568
34569
34570
34571
# File 'lib/aws-sdk-ec2/types.rb', line 34563

class SpotOptions < Struct.new(
  :allocation_strategy,
  :instance_interruption_behavior,
  :instance_pools_to_use_count,
  :single_instance_type,
  :single_availability_zone,
  :min_target_capacity)
  include Aws::Structure
end

#min_target_capacityInteger

The minimum target capacity for Spot Instances in the fleet. If the minimum target capacity is not reached, the fleet launches no instances.

Returns:

  • (Integer)


34563
34564
34565
34566
34567
34568
34569
34570
34571
# File 'lib/aws-sdk-ec2/types.rb', line 34563

class SpotOptions < Struct.new(
  :allocation_strategy,
  :instance_interruption_behavior,
  :instance_pools_to_use_count,
  :single_instance_type,
  :single_availability_zone,
  :min_target_capacity)
  include Aws::Structure
end

#single_availability_zoneBoolean

Indicates that the fleet launches all Spot Instances into a single Availability Zone.

Returns:

  • (Boolean)


34563
34564
34565
34566
34567
34568
34569
34570
34571
# File 'lib/aws-sdk-ec2/types.rb', line 34563

class SpotOptions < Struct.new(
  :allocation_strategy,
  :instance_interruption_behavior,
  :instance_pools_to_use_count,
  :single_instance_type,
  :single_availability_zone,
  :min_target_capacity)
  include Aws::Structure
end

#single_instance_typeBoolean

Indicates that the fleet uses a single instance type to launch all Spot Instances in the fleet.

Returns:

  • (Boolean)


34563
34564
34565
34566
34567
34568
34569
34570
34571
# File 'lib/aws-sdk-ec2/types.rb', line 34563

class SpotOptions < Struct.new(
  :allocation_strategy,
  :instance_interruption_behavior,
  :instance_pools_to_use_count,
  :single_instance_type,
  :single_availability_zone,
  :min_target_capacity)
  include Aws::Structure
end