[][src]Struct rusoto_ce::TagValues

pub struct TagValues {
    pub key: Option<String>,
    pub match_options: Option<Vec<String>>,
    pub values: Option<Vec<String>>,
}

The values that are available for a tag.

Fields

key: Option<String>

The key for the tag.

match_options: Option<Vec<String>>

The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to Cost Category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE.

values: Option<Vec<String>>

The specific value of the tag.

Trait Implementations

impl Clone for TagValues[src]

impl Debug for TagValues[src]

impl Default for TagValues[src]

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

impl PartialEq<TagValues> for TagValues[src]

impl Serialize for TagValues[src]

impl StructuralPartialEq for TagValues[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.