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`.
57970 57971 57972 57973 57974 57975 57976 |
# File 'lib/aws-sdk-ec2/types.rb', line 57970 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end |
#price ⇒ Float
The fixed price for the term.
57970 57971 57972 57973 57974 57975 57976 |
# File 'lib/aws-sdk-ec2/types.rb', line 57970 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.
57970 57971 57972 57973 57974 57975 57976 |
# File 'lib/aws-sdk-ec2/types.rb', line 57970 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end |