[][src]Struct rusoto_ec2::PurchaseHostReservationResult

pub struct PurchaseHostReservationResult {
    pub client_token: Option<String>,
    pub currency_code: Option<String>,
    pub purchase: Option<Vec<Purchase>>,
    pub total_hourly_price: Option<String>,
    pub total_upfront_price: Option<String>,
}

Fields

client_token: Option<String>

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

currency_code: Option<String>

The currency in which the totalUpfrontPrice and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

purchase: Option<Vec<Purchase>>

Describes the details of the purchase.

total_hourly_price: Option<String>

The total hourly price of the reservation calculated per hour.

total_upfront_price: Option<String>

The total amount charged to your account when you purchase the reservation.

Trait Implementations

impl Clone for PurchaseHostReservationResult[src]

impl Default for PurchaseHostReservationResult[src]

impl PartialEq<PurchaseHostReservationResult> for PurchaseHostReservationResult[src]

impl Debug for PurchaseHostReservationResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self