Class: Aws::EC2::Types::LaunchTemplateCapacityReservationSpecificationRequest

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 LaunchTemplateCapacityReservationSpecificationRequest data as a hash:

{
  capacity_reservation_preference: "open", # accepts open, none
  capacity_reservation_target: {
    capacity_reservation_id: "String",
  },
}

Describes an instance’s Capacity Reservation targeting option. You can specify only one option at a time. Use the ‘CapacityReservationPreference` parameter to configure the instance to run in On-Demand capacity or to run in any `open` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). Use the `CapacityReservationTarget` parameter to explicitly target a specific Capacity Reservation.

Instance Attribute Summary collapse

Instance Attribute Details

#capacity_reservation_preferenceString

Indicates the instance’s Capacity Reservation preferences. Possible preferences include:

  • ‘open` - The instance can run in any `open` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).

  • ‘none` - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.

Returns:

  • (String)


23684
23685
23686
23687
23688
# File 'lib/aws-sdk-ec2/types.rb', line 23684

class LaunchTemplateCapacityReservationSpecificationRequest < Struct.new(
  :capacity_reservation_preference,
  :capacity_reservation_target)
  include Aws::Structure
end

#capacity_reservation_targetTypes::CapacityReservationTarget

Information about the target Capacity Reservation.



23684
23685
23686
23687
23688
# File 'lib/aws-sdk-ec2/types.rb', line 23684

class LaunchTemplateCapacityReservationSpecificationRequest < Struct.new(
  :capacity_reservation_preference,
  :capacity_reservation_target)
  include Aws::Structure
end