[][src]Struct rusoto_ce::CurrentInstance

pub struct CurrentInstance {
    pub currency_code: Option<String>,
    pub instance_name: Option<String>,
    pub monthly_cost: Option<String>,
    pub on_demand_hours_in_lookback_period: Option<String>,
    pub reservation_covered_hours_in_lookback_period: Option<String>,
    pub resource_details: Option<ResourceDetails>,
    pub resource_id: Option<String>,
    pub resource_utilization: Option<ResourceUtilization>,
    pub savings_plans_covered_hours_in_lookback_period: Option<String>,
    pub tags: Option<Vec<TagValues>>,
    pub total_running_hours_in_lookback_period: Option<String>,
}

Context about the current instance.

Fields

currency_code: Option<String>

The currency code that Amazon Web Services used to calculate the costs for this instance.

instance_name: Option<String>

The name you've given an instance. This field will show as blank if you haven't given the instance a name.

monthly_cost: Option<String>

Current On Demand cost of operating this instance on a monthly basis.

on_demand_hours_in_lookback_period: Option<String>

Number of hours during the lookback period billed at On Demand rates.

reservation_covered_hours_in_lookback_period: Option<String>

Number of hours during the lookback period covered by reservations.

resource_details: Option<ResourceDetails>

Details about the resource and utilization.

resource_id: Option<String>

Resource ID of the current instance.

resource_utilization: Option<ResourceUtilization>

Utilization information of the current instance during the lookback period.

savings_plans_covered_hours_in_lookback_period: Option<String>

Number of hours during the lookback period covered by Savings Plans.

tags: Option<Vec<TagValues>>

Cost allocation resource tags applied to the instance.

total_running_hours_in_lookback_period: Option<String>

The total number of hours the instance ran during the lookback period.

Trait Implementations

impl Clone for CurrentInstance[src]

impl Debug for CurrentInstance[src]

impl Default for CurrentInstance[src]

impl<'de> Deserialize<'de> for CurrentInstance[src]

impl PartialEq<CurrentInstance> for CurrentInstance[src]

impl StructuralPartialEq for CurrentInstance[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.