pub struct GetReservedInstancesExchangeQuoteResult {
pub currency_code: Option<String>,
pub is_valid_exchange: Option<bool>,
pub output_reserved_instances_will_expire_at: Option<String>,
pub payment_due: Option<String>,
pub reserved_instance_value_rollup: Option<ReservationValue>,
pub reserved_instance_value_set: Option<Vec<ReservedInstanceReservationValue>>,
pub target_configuration_value_rollup: Option<ReservationValue>,
pub target_configuration_value_set: Option<Vec<TargetReservationValue>>,
pub validation_failure_reason: Option<String>,
}Expand description
Contains the output of GetReservedInstancesExchangeQuote.
Fields§
§currency_code: Option<String>The currency of the transaction.
is_valid_exchange: Option<bool>If true, the exchange is valid. If false, the exchange cannot be completed.
output_reserved_instances_will_expire_at: Option<String>The new end date of the reservation term.
payment_due: Option<String>The total true upfront charge for the exchange.
reserved_instance_value_rollup: Option<ReservationValue>The cost associated with the Reserved Instance.
reserved_instance_value_set: Option<Vec<ReservedInstanceReservationValue>>The configuration of your Convertible Reserved Instances.
target_configuration_value_rollup: Option<ReservationValue>The cost associated with the Reserved Instance.
target_configuration_value_set: Option<Vec<TargetReservationValue>>The values of the target Convertible Reserved Instances.
validation_failure_reason: Option<String>Describes the reason why the exchange cannot be completed.
Trait Implementations§
Source§impl Clone for GetReservedInstancesExchangeQuoteResult
impl Clone for GetReservedInstancesExchangeQuoteResult
Source§fn clone(&self) -> GetReservedInstancesExchangeQuoteResult
fn clone(&self) -> GetReservedInstancesExchangeQuoteResult
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 Default for GetReservedInstancesExchangeQuoteResult
impl Default for GetReservedInstancesExchangeQuoteResult
Source§fn default() -> GetReservedInstancesExchangeQuoteResult
fn default() -> GetReservedInstancesExchangeQuoteResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetReservedInstancesExchangeQuoteResult
impl PartialEq for GetReservedInstancesExchangeQuoteResult
Source§fn eq(&self, other: &GetReservedInstancesExchangeQuoteResult) -> bool
fn eq(&self, other: &GetReservedInstancesExchangeQuoteResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetReservedInstancesExchangeQuoteResult
Auto Trait Implementations§
impl Freeze for GetReservedInstancesExchangeQuoteResult
impl RefUnwindSafe for GetReservedInstancesExchangeQuoteResult
impl Send for GetReservedInstancesExchangeQuoteResult
impl Sync for GetReservedInstancesExchangeQuoteResult
impl Unpin for GetReservedInstancesExchangeQuoteResult
impl UnwindSafe for GetReservedInstancesExchangeQuoteResult
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