Struct aws_sdk_dynamodb::types::builders::InputFormatOptionsBuilder
source · #[non_exhaustive]pub struct InputFormatOptionsBuilder { /* private fields */ }
Expand description
A builder for InputFormatOptions
.
Implementations§
source§impl InputFormatOptionsBuilder
impl InputFormatOptionsBuilder
sourcepub fn csv(self, input: CsvOptions) -> Self
pub fn csv(self, input: CsvOptions) -> Self
The options for imported source files in CSV format. The values are Delimiter and HeaderList.
sourcepub fn set_csv(self, input: Option<CsvOptions>) -> Self
pub fn set_csv(self, input: Option<CsvOptions>) -> Self
The options for imported source files in CSV format. The values are Delimiter and HeaderList.
sourcepub fn get_csv(&self) -> &Option<CsvOptions>
pub fn get_csv(&self) -> &Option<CsvOptions>
The options for imported source files in CSV format. The values are Delimiter and HeaderList.
sourcepub fn build(self) -> InputFormatOptions
pub fn build(self) -> InputFormatOptions
Consumes the builder and constructs a InputFormatOptions
.
Trait Implementations§
source§impl Clone for InputFormatOptionsBuilder
impl Clone for InputFormatOptionsBuilder
source§fn clone(&self) -> InputFormatOptionsBuilder
fn clone(&self) -> InputFormatOptionsBuilder
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 InputFormatOptionsBuilder
impl Debug for InputFormatOptionsBuilder
source§impl Default for InputFormatOptionsBuilder
impl Default for InputFormatOptionsBuilder
source§fn default() -> InputFormatOptionsBuilder
fn default() -> InputFormatOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InputFormatOptionsBuilder
impl PartialEq for InputFormatOptionsBuilder
source§fn eq(&self, other: &InputFormatOptionsBuilder) -> bool
fn eq(&self, other: &InputFormatOptionsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InputFormatOptionsBuilder
Auto Trait Implementations§
impl Freeze for InputFormatOptionsBuilder
impl RefUnwindSafe for InputFormatOptionsBuilder
impl Send for InputFormatOptionsBuilder
impl Sync for InputFormatOptionsBuilder
impl Unpin for InputFormatOptionsBuilder
impl UnwindSafe for InputFormatOptionsBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.