Struct rusoto_support::DescribeCommunicationsRequest[][src]

pub struct DescribeCommunicationsRequest {
    pub after_time: Option<String>,
    pub before_time: Option<String>,
    pub case_id: 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.

The AWS Support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47

The maximum number of results to return before paginating.

A resumption point for pagination.

Trait Implementations

impl Default for DescribeCommunicationsRequest
[src]

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

impl Debug for DescribeCommunicationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeCommunicationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeCommunicationsRequest
[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