[][src]Struct rusoto_ce::GetTagsRequest

pub struct GetTagsRequest {
    pub next_page_token: Option<String>,
    pub search_string: Option<String>,
    pub tag_key: Option<String>,
    pub time_period: DateInterval,
}

Fields

next_page_token: Option<String>

The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

search_string: Option<String>

The value that you want to search for.

tag_key: Option<String>

The key of the tag that you want to return values for.

time_period: DateInterval

The start and end dates for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

Trait Implementations

impl Clone for GetTagsRequest[src]

impl Debug for GetTagsRequest[src]

impl Default for GetTagsRequest[src]

impl PartialEq<GetTagsRequest> for GetTagsRequest[src]

impl Serialize for GetTagsRequest[src]

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