Class: Aws::EC2::Types::ModifySpotFleetRequestRequest

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

Overview

Note:

When making an API call, you may pass ModifySpotFleetRequestRequest data as a hash:

{
  excess_capacity_termination_policy: "noTermination", # accepts noTermination, default
  spot_fleet_request_id: "String", # required
  target_capacity: 1,
}

Contains the parameters for ModifySpotFleetRequest.

Instance Attribute Summary collapse

Instance Attribute Details

#excess_capacity_termination_policyString

Indicates whether running Spot instances should be terminated if the target capacity of the Spot fleet request is decreased below the current size of the Spot fleet.

Returns:

  • (String)


16731
16732
16733
16734
16735
16736
# File 'lib/aws-sdk-ec2/types.rb', line 16731

class ModifySpotFleetRequestRequest < Struct.new(
  :excess_capacity_termination_policy,
  :spot_fleet_request_id,
  :target_capacity)
  include Aws::Structure
end

#spot_fleet_request_idString

The ID of the Spot fleet request.

Returns:

  • (String)


16731
16732
16733
16734
16735
16736
# File 'lib/aws-sdk-ec2/types.rb', line 16731

class ModifySpotFleetRequestRequest < Struct.new(
  :excess_capacity_termination_policy,
  :spot_fleet_request_id,
  :target_capacity)
  include Aws::Structure
end

#target_capacityInteger

The size of the fleet.

Returns:

  • (Integer)


16731
16732
16733
16734
16735
16736
# File 'lib/aws-sdk-ec2/types.rb', line 16731

class ModifySpotFleetRequestRequest < Struct.new(
  :excess_capacity_termination_policy,
  :spot_fleet_request_id,
  :target_capacity)
  include Aws::Structure
end