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