Struct rusoto_support::AddCommunicationToCaseRequest[][src]

pub struct AddCommunicationToCaseRequest {
    pub attachment_set_id: Option<String>,
    pub case_id: Option<String>,
    pub cc_email_addresses: Option<Vec<String>>,
    pub communication_body: String,
}

To be written.

Fields

The ID of a set of one or more attachments for the communication to add to the case. Create the set by calling AddAttachmentsToSet

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 addresses in the CC line of an email to be added to the support case.

The body of an email communication to add to the support case.

Trait Implementations

impl Default for AddCommunicationToCaseRequest
[src]

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

impl Debug for AddCommunicationToCaseRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddCommunicationToCaseRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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