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`.
54746 54747 54748 54749 54750 54751 54752 |
# File 'lib/aws-sdk-ec2/types.rb', line 54746 class PriceScheduleSpecification < Struct.new( :currency_code, :price, :term) SENSITIVE = [] include Aws::Structure end |
#price ⇒ Float
The fixed price for the term.
54746 54747 54748 54749 54750 54751 54752 |
# File 'lib/aws-sdk-ec2/types.rb', line 54746 class PriceScheduleSpecification < Struct.new( :currency_code, :price, :term) 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.
54746 54747 54748 54749 54750 54751 54752 |
# File 'lib/aws-sdk-ec2/types.rb', line 54746 class PriceScheduleSpecification < Struct.new( :currency_code, :price, :term) SENSITIVE = [] include Aws::Structure end |