Struct aws_sdk_ec2::model::PriceSchedule [−][src]
#[non_exhaustive]pub struct PriceSchedule {
pub active: Option<bool>,
pub currency_code: Option<CurrencyCodeValues>,
pub price: Option<f64>,
pub term: Option<i64>,
}
Expand description
Describes the price for a Reserved Instance.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.active: Option<bool>
The current price schedule, as determined by the term remaining for the Reserved Instance in the listing.
A specific price schedule is always in effect, but only one price schedule can be active at any time. Take, for example, a Reserved Instance listing that has five months remaining in its term. When you specify price schedules for five months and two months, this means that schedule 1, covering the first three months of the remaining term, will be active during months 5, 4, and 3. Then schedule 2, covering the last two months of the term, will be active for months 2 and 1.
currency_code: Option<CurrencyCodeValues>
The currency for transacting the Reserved Instance resale.
At this time, the only supported currency is USD
.
price: Option<f64>
The fixed price for the term.
term: Option<i64>
The number of months remaining in the reservation. For example, 2 is the second to the last month before the capacity reservation expires.
Implementations
The current price schedule, as determined by the term remaining for the Reserved Instance in the listing.
A specific price schedule is always in effect, but only one price schedule can be active at any time. Take, for example, a Reserved Instance listing that has five months remaining in its term. When you specify price schedules for five months and two months, this means that schedule 1, covering the first three months of the remaining term, will be active during months 5, 4, and 3. Then schedule 2, covering the last two months of the term, will be active for months 2 and 1.
The currency for transacting the Reserved Instance resale.
At this time, the only supported currency is USD
.
Creates a new builder-style object to manufacture PriceSchedule
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PriceSchedule
impl Send for PriceSchedule
impl Sync for PriceSchedule
impl Unpin for PriceSchedule
impl UnwindSafe for PriceSchedule
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more