Struct aws_sdk_glue::types::builders::AmazonRedshiftTargetBuilder
source · #[non_exhaustive]pub struct AmazonRedshiftTargetBuilder { /* private fields */ }Expand description
A builder for AmazonRedshiftTarget.
Implementations§
source§impl AmazonRedshiftTargetBuilder
impl AmazonRedshiftTargetBuilder
sourcepub fn data(self, input: AmazonRedshiftNodeData) -> Self
pub fn data(self, input: AmazonRedshiftNodeData) -> Self
Specifies the data of the Amazon Redshift target node.
sourcepub fn set_data(self, input: Option<AmazonRedshiftNodeData>) -> Self
pub fn set_data(self, input: Option<AmazonRedshiftNodeData>) -> Self
Specifies the data of the Amazon Redshift target node.
sourcepub fn get_data(&self) -> &Option<AmazonRedshiftNodeData>
pub fn get_data(&self) -> &Option<AmazonRedshiftNodeData>
Specifies the data of the Amazon Redshift 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) -> AmazonRedshiftTarget
pub fn build(self) -> AmazonRedshiftTarget
Consumes the builder and constructs a AmazonRedshiftTarget.
Trait Implementations§
source§impl Clone for AmazonRedshiftTargetBuilder
impl Clone for AmazonRedshiftTargetBuilder
source§fn clone(&self) -> AmazonRedshiftTargetBuilder
fn clone(&self) -> AmazonRedshiftTargetBuilder
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 AmazonRedshiftTargetBuilder
impl Debug for AmazonRedshiftTargetBuilder
source§impl Default for AmazonRedshiftTargetBuilder
impl Default for AmazonRedshiftTargetBuilder
source§fn default() -> AmazonRedshiftTargetBuilder
fn default() -> AmazonRedshiftTargetBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AmazonRedshiftTargetBuilder
Auto Trait Implementations§
impl Freeze for AmazonRedshiftTargetBuilder
impl RefUnwindSafe for AmazonRedshiftTargetBuilder
impl Send for AmazonRedshiftTargetBuilder
impl Sync for AmazonRedshiftTargetBuilder
impl Unpin for AmazonRedshiftTargetBuilder
impl UnwindSafe for AmazonRedshiftTargetBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.