Struct rusoto_ec2::ReservationValue[][src]

pub struct ReservationValue {
    pub hourly_price: Option<String>,
    pub remaining_total_value: Option<String>,
    pub remaining_upfront_value: Option<String>,
}

The cost associated with the Reserved Instance.

Fields

The hourly rate of the reservation.

The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice * number of hours remaining).

The remaining upfront cost of the reservation.

Trait Implementations

impl Default for ReservationValue
[src]

Returns the "default value" for a type. Read more

impl Debug for ReservationValue
[src]

Formats the value using the given formatter. Read more

impl Clone for ReservationValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReservationValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations