Struct aws_sdk_ses::operation::get_identity_dkim_attributes::GetIdentityDkimAttributesOutput
source · #[non_exhaustive]pub struct GetIdentityDkimAttributesOutput {
pub dkim_attributes: HashMap<String, IdentityDkimAttributes>,
/* private fields */
}Expand description
Represents the status of Amazon SES Easy DKIM signing for an identity. For domain identities, this response also contains the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES successfully verified that these tokens were published.
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.dkim_attributes: HashMap<String, IdentityDkimAttributes>The DKIM attributes for an email address or a domain.
Implementations§
source§impl GetIdentityDkimAttributesOutput
impl GetIdentityDkimAttributesOutput
sourcepub fn dkim_attributes(&self) -> &HashMap<String, IdentityDkimAttributes>
pub fn dkim_attributes(&self) -> &HashMap<String, IdentityDkimAttributes>
The DKIM attributes for an email address or a domain.
source§impl GetIdentityDkimAttributesOutput
impl GetIdentityDkimAttributesOutput
sourcepub fn builder() -> GetIdentityDkimAttributesOutputBuilder
pub fn builder() -> GetIdentityDkimAttributesOutputBuilder
Creates a new builder-style object to manufacture GetIdentityDkimAttributesOutput.
Trait Implementations§
source§impl Clone for GetIdentityDkimAttributesOutput
impl Clone for GetIdentityDkimAttributesOutput
source§fn clone(&self) -> GetIdentityDkimAttributesOutput
fn clone(&self) -> GetIdentityDkimAttributesOutput
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 PartialEq for GetIdentityDkimAttributesOutput
impl PartialEq for GetIdentityDkimAttributesOutput
source§fn eq(&self, other: &GetIdentityDkimAttributesOutput) -> bool
fn eq(&self, other: &GetIdentityDkimAttributesOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetIdentityDkimAttributesOutput
impl RequestId for GetIdentityDkimAttributesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetIdentityDkimAttributesOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetIdentityDkimAttributesOutput
impl Send for GetIdentityDkimAttributesOutput
impl Sync for GetIdentityDkimAttributesOutput
impl Unpin for GetIdentityDkimAttributesOutput
impl UnwindSafe for GetIdentityDkimAttributesOutput
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.