Class: Aws::EC2::Types::PriceScheduleSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::PriceScheduleSpecification
- Defined in:
- gems/aws-sdk-ec2/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
.
58702 58703 58704 58705 58706 58707 58708 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58702 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end |
#price ⇒ Float
The fixed price for the term.
58702 58703 58704 58705 58706 58707 58708 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58702 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.
58702 58703 58704 58705 58706 58707 58708 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58702 class PriceScheduleSpecification < Struct.new( :term, :price, :currency_code) SENSITIVE = [] include Aws::Structure end |