#[non_exhaustive]pub struct DeleteEmailIdentityInput {
pub email_identity: Option<String>,
}Expand description
A request to delete an existing email identity. When you delete an identity, you lose the ability to send email from that identity. You can restore your ability to send email by completing the verification process for the identity again.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.email_identity: Option<String>The identity (that is, the email address or domain) to delete.
Implementations§
source§impl DeleteEmailIdentityInput
impl DeleteEmailIdentityInput
sourcepub fn email_identity(&self) -> Option<&str>
pub fn email_identity(&self) -> Option<&str>
The identity (that is, the email address or domain) to delete.
source§impl DeleteEmailIdentityInput
impl DeleteEmailIdentityInput
sourcepub fn builder() -> DeleteEmailIdentityInputBuilder
pub fn builder() -> DeleteEmailIdentityInputBuilder
Creates a new builder-style object to manufacture DeleteEmailIdentityInput.
Trait Implementations§
source§impl Clone for DeleteEmailIdentityInput
impl Clone for DeleteEmailIdentityInput
source§fn clone(&self) -> DeleteEmailIdentityInput
fn clone(&self) -> DeleteEmailIdentityInput
Returns a copy 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 Debug for DeleteEmailIdentityInput
impl Debug for DeleteEmailIdentityInput
source§impl PartialEq for DeleteEmailIdentityInput
impl PartialEq for DeleteEmailIdentityInput
source§fn eq(&self, other: &DeleteEmailIdentityInput) -> bool
fn eq(&self, other: &DeleteEmailIdentityInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteEmailIdentityInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteEmailIdentityInput
impl Send for DeleteEmailIdentityInput
impl Sync for DeleteEmailIdentityInput
impl Unpin for DeleteEmailIdentityInput
impl UnwindSafe for DeleteEmailIdentityInput
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
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>
Creates a shared type from an unshared type.