[][src]Struct rusoto_support::DescribeCommunicationsRequest

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

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: String

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

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 DescribeCommunicationsRequest[src]

impl Debug for DescribeCommunicationsRequest[src]

impl Default for DescribeCommunicationsRequest[src]

impl PartialEq<DescribeCommunicationsRequest> for DescribeCommunicationsRequest[src]

impl Serialize for DescribeCommunicationsRequest[src]

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