[][src]Struct rusoto_support::DescribeCasesRequest

pub struct DescribeCasesRequest {
    pub after_time: Option<String>,
    pub before_time: Option<String>,
    pub case_id_list: Option<Vec<String>>,
    pub display_id: Option<String>,
    pub include_communications: Option<bool>,
    pub include_resolved_cases: Option<bool>,
    pub language: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

after_time: Option<String>

The start date for a filtered date search on support case communications. Case communications are available for 12 months after creation.

before_time: Option<String>

The end date for a filtered date search on support case communications. Case communications are available for 12 months after creation.

case_id_list: Option<Vec<String>>

A list of ID numbers of the support cases you want returned. The maximum number of cases is 100.

display_id: Option<String>

The ID displayed for a case in the AWS Support Center user interface.

include_communications: Option<bool>

Specifies whether to include communications in the DescribeCases response. By default, communications are incuded.

include_resolved_cases: Option<bool>

Specifies whether to include resolved support cases in the DescribeCases response. By default, resolved cases aren't included.

language: Option<String>

The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports English ("en") and Japanese ("ja"). Language parameters must be passed explicitly for operations that take them.

max_results: Option<i64>

The maximum number of results to return before paginating.

next_token: Option<String>

A resumption point for pagination.

Trait Implementations

impl Clone for DescribeCasesRequest[src]

impl Debug for DescribeCasesRequest[src]

impl Default for DescribeCasesRequest[src]

impl PartialEq<DescribeCasesRequest> for DescribeCasesRequest[src]

impl Serialize for DescribeCasesRequest[src]

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