#[non_exhaustive]pub struct AddAttachmentsToSetOutput {
pub attachment_set_id: Option<String>,
pub expiry_time: Option<String>,
/* private fields */
}
Expand description
The ID and expiry time of the attachment set returned by the AddAttachmentsToSet
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.attachment_set_id: Option<String>
The ID of the attachment set. If an attachmentSetId
was not specified, a new attachment set is created, and the ID of the set is returned in the response. If an attachmentSetId
was specified, the attachments are added to the specified set, if it exists.
expiry_time: Option<String>
The time and date when the attachment set expires.
Implementations§
source§impl AddAttachmentsToSetOutput
impl AddAttachmentsToSetOutput
sourcepub fn attachment_set_id(&self) -> Option<&str>
pub fn attachment_set_id(&self) -> Option<&str>
The ID of the attachment set. If an attachmentSetId
was not specified, a new attachment set is created, and the ID of the set is returned in the response. If an attachmentSetId
was specified, the attachments are added to the specified set, if it exists.
sourcepub fn expiry_time(&self) -> Option<&str>
pub fn expiry_time(&self) -> Option<&str>
The time and date when the attachment set expires.
source§impl AddAttachmentsToSetOutput
impl AddAttachmentsToSetOutput
sourcepub fn builder() -> AddAttachmentsToSetOutputBuilder
pub fn builder() -> AddAttachmentsToSetOutputBuilder
Creates a new builder-style object to manufacture AddAttachmentsToSetOutput
.
Trait Implementations§
source§impl Clone for AddAttachmentsToSetOutput
impl Clone for AddAttachmentsToSetOutput
source§fn clone(&self) -> AddAttachmentsToSetOutput
fn clone(&self) -> AddAttachmentsToSetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AddAttachmentsToSetOutput
impl Debug for AddAttachmentsToSetOutput
source§impl PartialEq for AddAttachmentsToSetOutput
impl PartialEq for AddAttachmentsToSetOutput
source§fn eq(&self, other: &AddAttachmentsToSetOutput) -> bool
fn eq(&self, other: &AddAttachmentsToSetOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for AddAttachmentsToSetOutput
impl RequestId for AddAttachmentsToSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for AddAttachmentsToSetOutput
Auto Trait Implementations§
impl Freeze for AddAttachmentsToSetOutput
impl RefUnwindSafe for AddAttachmentsToSetOutput
impl Send for AddAttachmentsToSetOutput
impl Sync for AddAttachmentsToSetOutput
impl Unpin for AddAttachmentsToSetOutput
impl UnwindSafe for AddAttachmentsToSetOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more