Class: Aws::EC2::Types::SpotPlacement
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::SpotPlacement
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes Spot Instance placement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone ⇒ String
The Availability Zone.
-
#group_name ⇒ String
The name of the placement group.
-
#tenancy ⇒ String
The tenancy of the instance (if the instance is running in a VPC).
Instance Attribute Details
#availability_zone ⇒ String
The Availability Zone.
[Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, "us-west-2a, us-west-2b".
67406 67407 67408 67409 67410 67411 67412 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67406 class SpotPlacement < Struct.new( :availability_zone, :group_name, :tenancy) SENSITIVE = [] include Aws::Structure end |
#group_name ⇒ String
The name of the placement group.
67406 67407 67408 67409 67410 67411 67412 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67406 class SpotPlacement < Struct.new( :availability_zone, :group_name, :tenancy) SENSITIVE = [] include Aws::Structure end |
#tenancy ⇒ String
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.
67406 67407 67408 67409 67410 67411 67412 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67406 class SpotPlacement < Struct.new( :availability_zone, :group_name, :tenancy) SENSITIVE = [] include Aws::Structure end |