Struct aws_sdk_sesv2::types::ImportDestination
source · #[non_exhaustive]pub struct ImportDestination {
pub suppression_list_destination: Option<SuppressionListDestination>,
pub contact_list_destination: Option<ContactListDestination>,
}Expand description
An object that contains details about the resource destination the import job is going to target.
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.suppression_list_destination: Option<SuppressionListDestination>An object that contains the action of the import job towards suppression list.
contact_list_destination: Option<ContactListDestination>An object that contains the action of the import job towards a contact list.
Implementations§
source§impl ImportDestination
impl ImportDestination
sourcepub fn suppression_list_destination(
&self
) -> Option<&SuppressionListDestination>
pub fn suppression_list_destination( &self ) -> Option<&SuppressionListDestination>
An object that contains the action of the import job towards suppression list.
sourcepub fn contact_list_destination(&self) -> Option<&ContactListDestination>
pub fn contact_list_destination(&self) -> Option<&ContactListDestination>
An object that contains the action of the import job towards a contact list.
source§impl ImportDestination
impl ImportDestination
sourcepub fn builder() -> ImportDestinationBuilder
pub fn builder() -> ImportDestinationBuilder
Creates a new builder-style object to manufacture ImportDestination.
Trait Implementations§
source§impl Clone for ImportDestination
impl Clone for ImportDestination
source§fn clone(&self) -> ImportDestination
fn clone(&self) -> ImportDestination
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 ImportDestination
impl Debug for ImportDestination
source§impl PartialEq for ImportDestination
impl PartialEq for ImportDestination
source§fn eq(&self, other: &ImportDestination) -> bool
fn eq(&self, other: &ImportDestination) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ImportDestination
Auto Trait Implementations§
impl RefUnwindSafe for ImportDestination
impl Send for ImportDestination
impl Sync for ImportDestination
impl Unpin for ImportDestination
impl UnwindSafe for ImportDestination
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.