#[non_exhaustive]pub struct StartArchiveExportInput {
pub archive_id: Option<String>,
pub filters: Option<ArchiveFilters>,
pub from_timestamp: Option<DateTime>,
pub to_timestamp: Option<DateTime>,
pub max_results: Option<i32>,
pub export_destination_configuration: Option<ExportDestinationConfiguration>,
}Expand description
The request to initiate an export of emails from an archive.
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.archive_id: Option<String>The identifier of the archive to export emails from.
filters: Option<ArchiveFilters>Criteria to filter which emails are included in the export.
from_timestamp: Option<DateTime>The start of the timestamp range to include emails from.
to_timestamp: Option<DateTime>The end of the timestamp range to include emails from.
max_results: Option<i32>The maximum number of email items to include in the export.
export_destination_configuration: Option<ExportDestinationConfiguration>Details on where to deliver the exported email data.
Implementations§
source§impl StartArchiveExportInput
impl StartArchiveExportInput
sourcepub fn archive_id(&self) -> Option<&str>
pub fn archive_id(&self) -> Option<&str>
The identifier of the archive to export emails from.
sourcepub fn filters(&self) -> Option<&ArchiveFilters>
pub fn filters(&self) -> Option<&ArchiveFilters>
Criteria to filter which emails are included in the export.
sourcepub fn from_timestamp(&self) -> Option<&DateTime>
pub fn from_timestamp(&self) -> Option<&DateTime>
The start of the timestamp range to include emails from.
sourcepub fn to_timestamp(&self) -> Option<&DateTime>
pub fn to_timestamp(&self) -> Option<&DateTime>
The end of the timestamp range to include emails from.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of email items to include in the export.
sourcepub fn export_destination_configuration(
&self,
) -> Option<&ExportDestinationConfiguration>
pub fn export_destination_configuration( &self, ) -> Option<&ExportDestinationConfiguration>
Details on where to deliver the exported email data.
source§impl StartArchiveExportInput
impl StartArchiveExportInput
sourcepub fn builder() -> StartArchiveExportInputBuilder
pub fn builder() -> StartArchiveExportInputBuilder
Creates a new builder-style object to manufacture StartArchiveExportInput.
Trait Implementations§
source§impl Clone for StartArchiveExportInput
impl Clone for StartArchiveExportInput
source§fn clone(&self) -> StartArchiveExportInput
fn clone(&self) -> StartArchiveExportInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartArchiveExportInput
impl Debug for StartArchiveExportInput
source§impl PartialEq for StartArchiveExportInput
impl PartialEq for StartArchiveExportInput
source§fn eq(&self, other: &StartArchiveExportInput) -> bool
fn eq(&self, other: &StartArchiveExportInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartArchiveExportInput
Auto Trait Implementations§
impl Freeze for StartArchiveExportInput
impl RefUnwindSafe for StartArchiveExportInput
impl Send for StartArchiveExportInput
impl Sync for StartArchiveExportInput
impl Unpin for StartArchiveExportInput
impl UnwindSafe for StartArchiveExportInput
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