#[non_exhaustive]pub struct GetHostReservationPurchasePreviewOutput {
pub currency_code: Option<CurrencyCodeValues>,
pub purchase: Option<Vec<Purchase>>,
pub total_hourly_price: Option<String>,
pub total_upfront_price: Option<String>,
}
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.currency_code: Option<CurrencyCodeValues>
The currency in which the totalUpfrontPrice
and totalHourlyPrice
amounts are specified. At this time, the only supported currency is USD
.
purchase: Option<Vec<Purchase>>
The purchase information of the Dedicated Host reservation and the Dedicated Hosts associated with it.
total_hourly_price: Option<String>
The potential total hourly price of the reservation per hour.
total_upfront_price: Option<String>
The potential total upfront price. This is billed immediately.
Implementations
The currency in which the totalUpfrontPrice
and totalHourlyPrice
amounts are specified. At this time, the only supported currency is USD
.
The purchase information of the Dedicated Host reservation and the Dedicated Hosts associated with it.
The potential total hourly price of the reservation per hour.
The potential total upfront price. This is billed immediately.
Creates a new builder-style object to manufacture GetHostReservationPurchasePreviewOutput
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
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