Struct aws_sdk_glue::types::builders::JoinBuilder
source · #[non_exhaustive]pub struct JoinBuilder { /* private fields */ }Expand description
A builder for Join.
Implementations§
source§impl JoinBuilder
impl JoinBuilder
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 join_type(self, input: JoinType) -> Self
pub fn join_type(self, input: JoinType) -> Self
Specifies the type of join to be performed on the datasets.
This field is required.sourcepub fn set_join_type(self, input: Option<JoinType>) -> Self
pub fn set_join_type(self, input: Option<JoinType>) -> Self
Specifies the type of join to be performed on the datasets.
sourcepub fn get_join_type(&self) -> &Option<JoinType>
pub fn get_join_type(&self) -> &Option<JoinType>
Specifies the type of join to be performed on the datasets.
sourcepub fn columns(self, input: JoinColumn) -> Self
pub fn columns(self, input: JoinColumn) -> Self
Appends an item to columns.
To override the contents of this collection use set_columns.
A list of the two columns to be joined.
sourcepub fn set_columns(self, input: Option<Vec<JoinColumn>>) -> Self
pub fn set_columns(self, input: Option<Vec<JoinColumn>>) -> Self
A list of the two columns to be joined.
sourcepub fn get_columns(&self) -> &Option<Vec<JoinColumn>>
pub fn get_columns(&self) -> &Option<Vec<JoinColumn>>
A list of the two columns to be joined.
Trait Implementations§
source§impl Clone for JoinBuilder
impl Clone for JoinBuilder
source§fn clone(&self) -> JoinBuilder
fn clone(&self) -> JoinBuilder
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 JoinBuilder
impl Debug for JoinBuilder
source§impl Default for JoinBuilder
impl Default for JoinBuilder
source§fn default() -> JoinBuilder
fn default() -> JoinBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for JoinBuilder
impl PartialEq for JoinBuilder
source§fn eq(&self, other: &JoinBuilder) -> bool
fn eq(&self, other: &JoinBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for JoinBuilder
Auto Trait Implementations§
impl RefUnwindSafe for JoinBuilder
impl Send for JoinBuilder
impl Sync for JoinBuilder
impl Unpin for JoinBuilder
impl UnwindSafe for JoinBuilder
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.