pub struct ReservedInstanceLimitPrice {
pub amount: Option<f64>,
pub currency_code: Option<String>,
}Expand description
Describes the limit price of a Reserved Instance offering.
Fields§
§amount: Option<f64>Used for Reserved Instance Marketplace offerings. Specifies the limit price on the total order (instanceCount * price).
currency_code: Option<String>The currency in which the limitPrice amount is specified. At this time, the only supported currency is USD.
Trait Implementations§
Source§impl Clone for ReservedInstanceLimitPrice
impl Clone for ReservedInstanceLimitPrice
Source§fn clone(&self) -> ReservedInstanceLimitPrice
fn clone(&self) -> ReservedInstanceLimitPrice
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReservedInstanceLimitPrice
impl Debug for ReservedInstanceLimitPrice
Source§impl Default for ReservedInstanceLimitPrice
impl Default for ReservedInstanceLimitPrice
Source§fn default() -> ReservedInstanceLimitPrice
fn default() -> ReservedInstanceLimitPrice
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ReservedInstanceLimitPrice
Auto Trait Implementations§
impl Freeze for ReservedInstanceLimitPrice
impl RefUnwindSafe for ReservedInstanceLimitPrice
impl Send for ReservedInstanceLimitPrice
impl Sync for ReservedInstanceLimitPrice
impl Unpin for ReservedInstanceLimitPrice
impl UnwindSafe for ReservedInstanceLimitPrice
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more