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§
Source§impl Clone for DescribeCasesRequest
impl Clone for DescribeCasesRequest
Source§fn clone(&self) -> DescribeCasesRequest
fn clone(&self) -> DescribeCasesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more