Struct rusoto_support::Communication[][src]

pub struct Communication {
    pub attachment_set: Option<Vec<AttachmentDetails>>,
    pub body: Option<String>,
    pub case_id: Option<String>,
    pub submitted_by: Option<String>,
    pub time_created: Option<String>,
}

A communication associated with an AWS Support case. The communication consists of the case ID, the message body, attachment information, the account email address, and the date and time of the communication.

Fields

Information about the attachments to the case communication.

The text of the communication between the customer and AWS Support.

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 email address of the account that submitted the AWS Support case.

The time the communication was created.

Trait Implementations

impl Default for Communication
[src]

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

impl Debug for Communication
[src]

Formats the value using the given formatter. Read more

impl Clone for Communication
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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