Struct rusoto_support::AttachmentDetails[][src]

pub struct AttachmentDetails {
    pub attachment_id: Option<String>,
    pub file_name: Option<String>,
}

The file name and ID of an attachment to a case communication. You can use the ID to retrieve the attachment with the DescribeAttachment operation.

Fields

The ID of the attachment.

The file name of the attachment.

Trait Implementations

impl Default for AttachmentDetails
[src]

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

impl Debug for AttachmentDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for AttachmentDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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