#[non_exhaustive]pub struct CreateExportJobInput {
pub export_data_source: Option<ExportDataSource>,
pub export_destination: Option<ExportDestination>,
}Expand description
Represents a request to create an export job from a data source to a data destination.
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.export_data_source: Option<ExportDataSource>The data source for the export job.
export_destination: Option<ExportDestination>The destination for the export job.
Implementations§
source§impl CreateExportJobInput
impl CreateExportJobInput
sourcepub fn export_data_source(&self) -> Option<&ExportDataSource>
pub fn export_data_source(&self) -> Option<&ExportDataSource>
The data source for the export job.
sourcepub fn export_destination(&self) -> Option<&ExportDestination>
pub fn export_destination(&self) -> Option<&ExportDestination>
The destination for the export job.
source§impl CreateExportJobInput
impl CreateExportJobInput
sourcepub fn builder() -> CreateExportJobInputBuilder
pub fn builder() -> CreateExportJobInputBuilder
Creates a new builder-style object to manufacture CreateExportJobInput.
Trait Implementations§
source§impl Clone for CreateExportJobInput
impl Clone for CreateExportJobInput
source§fn clone(&self) -> CreateExportJobInput
fn clone(&self) -> CreateExportJobInput
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 CreateExportJobInput
impl Debug for CreateExportJobInput
source§impl PartialEq for CreateExportJobInput
impl PartialEq for CreateExportJobInput
source§fn eq(&self, other: &CreateExportJobInput) -> bool
fn eq(&self, other: &CreateExportJobInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateExportJobInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateExportJobInput
impl Send for CreateExportJobInput
impl Sync for CreateExportJobInput
impl Unpin for CreateExportJobInput
impl UnwindSafe for CreateExportJobInput
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.