Struct rusoto_support::AddAttachmentsToSetRequest[][src]

pub struct AddAttachmentsToSetRequest {
    pub attachment_set_id: Option<String>,
    pub attachments: Vec<Attachment>,
}

Fields

The ID of the attachment set. If an attachmentSetId is not specified, a new attachment set is created, and the ID of the set is returned in the response. If an attachmentSetId is specified, the attachments are added to the specified set, if it exists.

One or more attachments to add to the set. The limit is 3 attachments per set, and the size limit is 5 MB per attachment.

Trait Implementations

impl Default for AddAttachmentsToSetRequest
[src]

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

impl Debug for AddAttachmentsToSetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddAttachmentsToSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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