Struct aws_sdk_databrew::types::builders::SampleBuilder
source · #[non_exhaustive]pub struct SampleBuilder { /* private fields */ }
Expand description
A builder for Sample
.
Implementations§
source§impl SampleBuilder
impl SampleBuilder
sourcepub fn type(self, input: SampleType) -> Self
pub fn type(self, input: SampleType) -> Self
The way in which DataBrew obtains rows from a dataset.
This field is required.sourcepub fn set_type(self, input: Option<SampleType>) -> Self
pub fn set_type(self, input: Option<SampleType>) -> Self
The way in which DataBrew obtains rows from a dataset.
sourcepub fn get_type(&self) -> &Option<SampleType>
pub fn get_type(&self) -> &Option<SampleType>
The way in which DataBrew obtains rows from a dataset.
Trait Implementations§
source§impl Clone for SampleBuilder
impl Clone for SampleBuilder
source§fn clone(&self) -> SampleBuilder
fn clone(&self) -> SampleBuilder
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 SampleBuilder
impl Debug for SampleBuilder
source§impl Default for SampleBuilder
impl Default for SampleBuilder
source§fn default() -> SampleBuilder
fn default() -> SampleBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SampleBuilder
impl PartialEq for SampleBuilder
source§fn eq(&self, other: &SampleBuilder) -> bool
fn eq(&self, other: &SampleBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SampleBuilder
Auto Trait Implementations§
impl Freeze for SampleBuilder
impl RefUnwindSafe for SampleBuilder
impl Send for SampleBuilder
impl Sync for SampleBuilder
impl Unpin for SampleBuilder
impl UnwindSafe for SampleBuilder
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>
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.