Struct aws_sdk_glue::types::builders::SnowflakeTargetBuilder
source · #[non_exhaustive]pub struct SnowflakeTargetBuilder { /* private fields */ }Expand description
A builder for SnowflakeTarget.
Implementations§
source§impl SnowflakeTargetBuilder
impl SnowflakeTargetBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the Snowflake target.
This field is required.sourcepub fn data(self, input: SnowflakeNodeData) -> Self
pub fn data(self, input: SnowflakeNodeData) -> Self
Specifies the data of the Snowflake target node.
This field is required.sourcepub fn set_data(self, input: Option<SnowflakeNodeData>) -> Self
pub fn set_data(self, input: Option<SnowflakeNodeData>) -> Self
Specifies the data of the Snowflake target node.
sourcepub fn get_data(&self) -> &Option<SnowflakeNodeData>
pub fn get_data(&self) -> &Option<SnowflakeNodeData>
Specifies the data of the Snowflake target node.
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 nodes that are inputs to the data target.
sourcepub fn set_inputs(self, input: Option<Vec<String>>) -> Self
pub fn set_inputs(self, input: Option<Vec<String>>) -> Self
The nodes that are inputs to the data target.
sourcepub fn get_inputs(&self) -> &Option<Vec<String>>
pub fn get_inputs(&self) -> &Option<Vec<String>>
The nodes that are inputs to the data target.
sourcepub fn build(self) -> Result<SnowflakeTarget, BuildError>
pub fn build(self) -> Result<SnowflakeTarget, BuildError>
Consumes the builder and constructs a SnowflakeTarget.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for SnowflakeTargetBuilder
impl Clone for SnowflakeTargetBuilder
source§fn clone(&self) -> SnowflakeTargetBuilder
fn clone(&self) -> SnowflakeTargetBuilder
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 SnowflakeTargetBuilder
impl Debug for SnowflakeTargetBuilder
source§impl Default for SnowflakeTargetBuilder
impl Default for SnowflakeTargetBuilder
source§fn default() -> SnowflakeTargetBuilder
fn default() -> SnowflakeTargetBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SnowflakeTargetBuilder
impl PartialEq for SnowflakeTargetBuilder
source§fn eq(&self, other: &SnowflakeTargetBuilder) -> bool
fn eq(&self, other: &SnowflakeTargetBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SnowflakeTargetBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SnowflakeTargetBuilder
impl Send for SnowflakeTargetBuilder
impl Sync for SnowflakeTargetBuilder
impl Unpin for SnowflakeTargetBuilder
impl UnwindSafe for SnowflakeTargetBuilder
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.