logo
pub struct ReservationAggregates {
Show 17 fields pub amortized_recurring_fee: Option<String>, pub amortized_upfront_fee: Option<String>, pub net_ri_savings: Option<String>, pub on_demand_cost_of_ri_hours_used: Option<String>, pub purchased_hours: Option<String>, pub purchased_units: Option<String>, pub ri_cost_for_unused_hours: Option<String>, pub realized_savings: Option<String>, pub total_actual_hours: Option<String>, pub total_actual_units: Option<String>, pub total_amortized_fee: Option<String>, pub total_potential_ri_savings: Option<String>, pub unrealized_savings: Option<String>, pub unused_hours: Option<String>, pub unused_units: Option<String>, pub utilization_percentage: Option<String>, pub utilization_percentage_in_units: Option<String>,
}
Expand description

The aggregated numbers for your reservation usage.

Fields

amortized_recurring_fee: Option<String>

The monthly cost of your reservation, amortized over the reservation period.

amortized_upfront_fee: Option<String>

The upfront cost of your reservation, amortized over the reservation period.

net_ri_savings: Option<String>

How much you saved due to purchasing and utilizing reservation. AWS calculates this by subtracting TotalAmortizedFee from OnDemandCostOfRIHoursUsed.

on_demand_cost_of_ri_hours_used: Option<String>

How much your reservation would cost if charged On-Demand rates.

purchased_hours: Option<String>

How many reservation hours that you purchased.

purchased_units: Option<String>

How many Amazon EC2 reservation hours that you purchased, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

ri_cost_for_unused_hours: Option<String>

The cost of unused hours for your reservation.

realized_savings: Option<String>

The realized savings due to purchasing and using a reservation.

total_actual_hours: Option<String>

The total number of reservation hours that you used.

total_actual_units: Option<String>

The total number of Amazon EC2 reservation hours that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

total_amortized_fee: Option<String>

The total cost of your reservation, amortized over the reservation period.

total_potential_ri_savings: Option<String>

How much you could save if you use your entire reservation.

unrealized_savings: Option<String>

The unrealized savings due to purchasing and using a reservation.

unused_hours: Option<String>

The number of reservation hours that you didn't use.

unused_units: Option<String>

The number of Amazon EC2 reservation hours that you didn't use, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

utilization_percentage: Option<String>

The percentage of reservation time that you used.

utilization_percentage_in_units: Option<String>

The percentage of Amazon EC2 reservation time that you used, converted to normalized units. Normalized units are available only for Amazon EC2 usage after November 11, 2017.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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