[][src]Struct rusoto_ce::CostCategoryReference

pub struct CostCategoryReference {
    pub cost_category_arn: Option<String>,
    pub effective_end: Option<String>,
    pub effective_start: Option<String>,
    pub name: Option<String>,
    pub number_of_rules: Option<i64>,
}

A reference to a Cost Category containing only enough information to identify the Cost Category.

You can use this information to retrieve the full Cost Category information using DescribeCostCategory.

Fields

cost_category_arn: Option<String>

The unique identifier for your Cost Category.

effective_end: Option<String>

The Cost Category's effective end date.

effective_start: Option<String>

The Cost Category's effective start date.

name: Option<String>number_of_rules: Option<i64>

The number of rules associated with a specific Cost Category.

Trait Implementations

impl Clone for CostCategoryReference[src]

impl Debug for CostCategoryReference[src]

impl Default for CostCategoryReference[src]

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

impl PartialEq<CostCategoryReference> for CostCategoryReference[src]

impl StructuralPartialEq for CostCategoryReference[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> Instrument for T[src]

impl<T> Instrument 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> 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.