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,
}
Fields§
§attachment_set_id: Option<String>
The ID of a set of one or more attachments for the communication to add to the case. Create the set by calling AddAttachmentsToSet
case_id: Option<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
cc_email_addresses: Option<Vec<String>>
The email addresses in the CC line of an email to be added to the support case.
communication_body: String
The body of an email communication to add to the support case.
Trait Implementations§
Source§impl Clone for AddCommunicationToCaseRequest
impl Clone for AddCommunicationToCaseRequest
Source§fn clone(&self) -> AddCommunicationToCaseRequest
fn clone(&self) -> AddCommunicationToCaseRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for AddCommunicationToCaseRequest
impl Default for AddCommunicationToCaseRequest
Source§fn default() -> AddCommunicationToCaseRequest
fn default() -> AddCommunicationToCaseRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddCommunicationToCaseRequest
impl PartialEq for AddCommunicationToCaseRequest
Source§fn eq(&self, other: &AddCommunicationToCaseRequest) -> bool
fn eq(&self, other: &AddCommunicationToCaseRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AddCommunicationToCaseRequest
Auto Trait Implementations§
impl Freeze for AddCommunicationToCaseRequest
impl RefUnwindSafe for AddCommunicationToCaseRequest
impl Send for AddCommunicationToCaseRequest
impl Sync for AddCommunicationToCaseRequest
impl Unpin for AddCommunicationToCaseRequest
impl UnwindSafe for AddCommunicationToCaseRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more