Struct aws_sdk_sesv2::types::ExportDataSource
source · #[non_exhaustive]pub struct ExportDataSource {
pub metrics_data_source: Option<MetricsDataSource>,
pub message_insights_data_source: Option<MessageInsightsDataSource>,
}Expand description
An object that contains details about the data source of the export job. It can only contain one of MetricsDataSource or MessageInsightsDataSource object.
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.metrics_data_source: Option<MetricsDataSource>An object that contains details about the data source for the metrics export.
message_insights_data_source: Option<MessageInsightsDataSource>An object that contains filters applied when performing the Message Insights export.
Implementations§
source§impl ExportDataSource
impl ExportDataSource
sourcepub fn metrics_data_source(&self) -> Option<&MetricsDataSource>
pub fn metrics_data_source(&self) -> Option<&MetricsDataSource>
An object that contains details about the data source for the metrics export.
sourcepub fn message_insights_data_source(&self) -> Option<&MessageInsightsDataSource>
pub fn message_insights_data_source(&self) -> Option<&MessageInsightsDataSource>
An object that contains filters applied when performing the Message Insights export.
source§impl ExportDataSource
impl ExportDataSource
sourcepub fn builder() -> ExportDataSourceBuilder
pub fn builder() -> ExportDataSourceBuilder
Creates a new builder-style object to manufacture ExportDataSource.
Trait Implementations§
source§impl Clone for ExportDataSource
impl Clone for ExportDataSource
source§fn clone(&self) -> ExportDataSource
fn clone(&self) -> ExportDataSource
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 ExportDataSource
impl Debug for ExportDataSource
source§impl PartialEq for ExportDataSource
impl PartialEq for ExportDataSource
source§fn eq(&self, other: &ExportDataSource) -> bool
fn eq(&self, other: &ExportDataSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExportDataSource
Auto Trait Implementations§
impl RefUnwindSafe for ExportDataSource
impl Send for ExportDataSource
impl Sync for ExportDataSource
impl Unpin for ExportDataSource
impl UnwindSafe for ExportDataSource
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.