Struct aws_sdk_glue::types::builders::FillMissingValuesBuilder
source · #[non_exhaustive]pub struct FillMissingValuesBuilder { /* private fields */ }Expand description
A builder for FillMissingValues.
Implementations§
source§impl FillMissingValuesBuilder
impl FillMissingValuesBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the transform node.
This field is required.sourcepub fn inputs(self, input: impl Into<String>) -> Self
pub fn inputs(self, input: impl Into<String>) -> Self
Appends an item to inputs.
To override the contents of this collection use set_inputs.
The data inputs identified by their node names.
sourcepub fn set_inputs(self, input: Option<Vec<String>>) -> Self
pub fn set_inputs(self, input: Option<Vec<String>>) -> Self
The data inputs identified by their node names.
sourcepub fn get_inputs(&self) -> &Option<Vec<String>>
pub fn get_inputs(&self) -> &Option<Vec<String>>
The data inputs identified by their node names.
sourcepub fn imputed_path(self, input: impl Into<String>) -> Self
pub fn imputed_path(self, input: impl Into<String>) -> Self
A JSON path to a variable in the data structure for the dataset that is imputed.
This field is required.sourcepub fn set_imputed_path(self, input: Option<String>) -> Self
pub fn set_imputed_path(self, input: Option<String>) -> Self
A JSON path to a variable in the data structure for the dataset that is imputed.
sourcepub fn get_imputed_path(&self) -> &Option<String>
pub fn get_imputed_path(&self) -> &Option<String>
A JSON path to a variable in the data structure for the dataset that is imputed.
sourcepub fn filled_path(self, input: impl Into<String>) -> Self
pub fn filled_path(self, input: impl Into<String>) -> Self
A JSON path to a variable in the data structure for the dataset that is filled.
sourcepub fn set_filled_path(self, input: Option<String>) -> Self
pub fn set_filled_path(self, input: Option<String>) -> Self
A JSON path to a variable in the data structure for the dataset that is filled.
sourcepub fn get_filled_path(&self) -> &Option<String>
pub fn get_filled_path(&self) -> &Option<String>
A JSON path to a variable in the data structure for the dataset that is filled.
sourcepub fn build(self) -> Result<FillMissingValues, BuildError>
pub fn build(self) -> Result<FillMissingValues, BuildError>
Consumes the builder and constructs a FillMissingValues.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for FillMissingValuesBuilder
impl Clone for FillMissingValuesBuilder
source§fn clone(&self) -> FillMissingValuesBuilder
fn clone(&self) -> FillMissingValuesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FillMissingValuesBuilder
impl Debug for FillMissingValuesBuilder
source§impl Default for FillMissingValuesBuilder
impl Default for FillMissingValuesBuilder
source§fn default() -> FillMissingValuesBuilder
fn default() -> FillMissingValuesBuilder
source§impl PartialEq for FillMissingValuesBuilder
impl PartialEq for FillMissingValuesBuilder
impl StructuralPartialEq for FillMissingValuesBuilder
Auto Trait Implementations§
impl Freeze for FillMissingValuesBuilder
impl RefUnwindSafe for FillMissingValuesBuilder
impl Send for FillMissingValuesBuilder
impl Sync for FillMissingValuesBuilder
impl Unpin for FillMissingValuesBuilder
impl UnwindSafe for FillMissingValuesBuilder
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> 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)
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>
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