Struct aws_sdk_glue::types::builders::DropDuplicatesBuilder
source · #[non_exhaustive]pub struct DropDuplicatesBuilder { /* private fields */ }Expand description
A builder for DropDuplicates.
Implementations§
source§impl DropDuplicatesBuilder
impl DropDuplicatesBuilder
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 columns(self, input: Vec<String>) -> Self
pub fn columns(self, input: Vec<String>) -> Self
Appends an item to columns.
To override the contents of this collection use set_columns.
The name of the columns to be merged or removed if repeating.
sourcepub fn set_columns(self, input: Option<Vec<Vec<String>>>) -> Self
pub fn set_columns(self, input: Option<Vec<Vec<String>>>) -> Self
The name of the columns to be merged or removed if repeating.
sourcepub fn get_columns(&self) -> &Option<Vec<Vec<String>>>
pub fn get_columns(&self) -> &Option<Vec<Vec<String>>>
The name of the columns to be merged or removed if repeating.
sourcepub fn build(self) -> Result<DropDuplicates, BuildError>
pub fn build(self) -> Result<DropDuplicates, BuildError>
Consumes the builder and constructs a DropDuplicates.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DropDuplicatesBuilder
impl Clone for DropDuplicatesBuilder
source§fn clone(&self) -> DropDuplicatesBuilder
fn clone(&self) -> DropDuplicatesBuilder
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 DropDuplicatesBuilder
impl Debug for DropDuplicatesBuilder
source§impl Default for DropDuplicatesBuilder
impl Default for DropDuplicatesBuilder
source§fn default() -> DropDuplicatesBuilder
fn default() -> DropDuplicatesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DropDuplicatesBuilder
impl PartialEq for DropDuplicatesBuilder
source§fn eq(&self, other: &DropDuplicatesBuilder) -> bool
fn eq(&self, other: &DropDuplicatesBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DropDuplicatesBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DropDuplicatesBuilder
impl Send for DropDuplicatesBuilder
impl Sync for DropDuplicatesBuilder
impl Unpin for DropDuplicatesBuilder
impl UnwindSafe for DropDuplicatesBuilder
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.