Class: Aws::EC2::Types::SpotPlacement
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::SpotPlacement
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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”.
      67372 67373 67374 67375 67376 67377 67378  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 67372 class SpotPlacement < Struct.new( :availability_zone, :group_name, :tenancy) SENSITIVE = [] include Aws::Structure end  | 
  
#group_name ⇒ String
The name of the placement group.
      67372 67373 67374 67375 67376 67377 67378  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 67372 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.
      67372 67373 67374 67375 67376 67377 67378  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 67372 class SpotPlacement < Struct.new( :availability_zone, :group_name, :tenancy) SENSITIVE = [] include Aws::Structure end  |