Struct aws_sdk_honeycode::types::ImportOptions
source · #[non_exhaustive]pub struct ImportOptions {
pub destination_options: Option<DestinationOptions>,
pub delimited_text_options: Option<DelimitedTextImportOptions>,
}
Expand description
An object that contains the options specified by the sumitter of the import request.
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.destination_options: Option<DestinationOptions>
Options relating to the destination of the import request.
delimited_text_options: Option<DelimitedTextImportOptions>
Options relating to parsing delimited text. Required if dataFormat is DELIMITED_TEXT.
Implementations§
source§impl ImportOptions
impl ImportOptions
sourcepub fn destination_options(&self) -> Option<&DestinationOptions>
pub fn destination_options(&self) -> Option<&DestinationOptions>
Options relating to the destination of the import request.
sourcepub fn delimited_text_options(&self) -> Option<&DelimitedTextImportOptions>
pub fn delimited_text_options(&self) -> Option<&DelimitedTextImportOptions>
Options relating to parsing delimited text. Required if dataFormat is DELIMITED_TEXT.
source§impl ImportOptions
impl ImportOptions
sourcepub fn builder() -> ImportOptionsBuilder
pub fn builder() -> ImportOptionsBuilder
Creates a new builder-style object to manufacture ImportOptions
.
Trait Implementations§
source§impl Clone for ImportOptions
impl Clone for ImportOptions
source§fn clone(&self) -> ImportOptions
fn clone(&self) -> ImportOptions
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 ImportOptions
impl Debug for ImportOptions
source§impl PartialEq for ImportOptions
impl PartialEq for ImportOptions
source§fn eq(&self, other: &ImportOptions) -> bool
fn eq(&self, other: &ImportOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImportOptions
Auto Trait Implementations§
impl RefUnwindSafe for ImportOptions
impl Send for ImportOptions
impl Sync for ImportOptions
impl Unpin for ImportOptions
impl UnwindSafe for ImportOptions
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.