Struct rusoto_support::DescribeCasesRequest[][src]

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

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

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

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

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

Specifies whether communications should be included in the DescribeCases results. The default is true.

Specifies whether resolved support cases should be included in the DescribeCases results. The default is false.

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.

The maximum number of results to return before paginating.

A resumption point for pagination.

Trait Implementations

impl Default for DescribeCasesRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeCasesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeCasesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeCasesRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations