Class: Aws::EC2::Types::PriceScheduleSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::PriceScheduleSpecification
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the price for a Reserved Instance.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #currency_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The currency for transacting the Reserved Instance resale.
 - 
  
    
      #price  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fixed price for the term.
 - 
  
    
      #term  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of months remaining in the reservation.
 
Instance Attribute Details
#currency_code ⇒ String
The currency for transacting the Reserved Instance resale. At this time, the only supported currency is ‘USD`.
      58735 58736 58737 58738 58739 58740 58741  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58735 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end  | 
  
#price ⇒ Float
The fixed price for the term.
      58735 58736 58737 58738 58739 58740 58741  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58735 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end  | 
  
#term ⇒ Integer
The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.
      58735 58736 58737 58738 58739 58740 58741  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58735 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end  |