Class: Aws::EC2::Types::SpotPlacement

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

Overview

Describes Spot Instance placement.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#availability_zoneString

The Availability Zone.

[Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, “us-west-2a, us-west-2b”.

Returns:

  • (String)


61788
61789
61790
61791
61792
61793
61794
# File 'lib/aws-sdk-ec2/types.rb', line 61788

class SpotPlacement < Struct.new(
  :availability_zone,
  :group_name,
  :tenancy)
  SENSITIVE = []
  include Aws::Structure
end

#group_nameString

The name of the placement group.

Returns:

  • (String)


61788
61789
61790
61791
61792
61793
61794
# File 'lib/aws-sdk-ec2/types.rb', line 61788

class SpotPlacement < Struct.new(
  :availability_zone,
  :group_name,
  :tenancy)
  SENSITIVE = []
  include Aws::Structure
end

#tenancyString

The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of ‘dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for Spot Instances.

Returns:

  • (String)


61788
61789
61790
61791
61792
61793
61794
# File 'lib/aws-sdk-ec2/types.rb', line 61788

class SpotPlacement < Struct.new(
  :availability_zone,
  :group_name,
  :tenancy)
  SENSITIVE = []
  include Aws::Structure
end