Struct aws_sdk_glue::types::builders::RedshiftTargetBuilder
source · #[non_exhaustive]pub struct RedshiftTargetBuilder { /* private fields */ }Expand description
A builder for RedshiftTarget.
Implementations§
source§impl RedshiftTargetBuilder
impl RedshiftTargetBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the data target.
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 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 database(self, input: impl Into<String>) -> Self
pub fn database(self, input: impl Into<String>) -> Self
The name of the database to write to.
This field is required.sourcepub fn set_database(self, input: Option<String>) -> Self
pub fn set_database(self, input: Option<String>) -> Self
The name of the database to write to.
sourcepub fn get_database(&self) -> &Option<String>
pub fn get_database(&self) -> &Option<String>
The name of the database to write to.
sourcepub fn table(self, input: impl Into<String>) -> Self
pub fn table(self, input: impl Into<String>) -> Self
The name of the table in the database to write to.
This field is required.sourcepub fn set_table(self, input: Option<String>) -> Self
pub fn set_table(self, input: Option<String>) -> Self
The name of the table in the database to write to.
sourcepub fn redshift_tmp_dir(self, input: impl Into<String>) -> Self
pub fn redshift_tmp_dir(self, input: impl Into<String>) -> Self
The Amazon S3 path where temporary data can be staged when copying out of the database.
sourcepub fn set_redshift_tmp_dir(self, input: Option<String>) -> Self
pub fn set_redshift_tmp_dir(self, input: Option<String>) -> Self
The Amazon S3 path where temporary data can be staged when copying out of the database.
sourcepub fn get_redshift_tmp_dir(&self) -> &Option<String>
pub fn get_redshift_tmp_dir(&self) -> &Option<String>
The Amazon S3 path where temporary data can be staged when copying out of the database.
sourcepub fn tmp_dir_iam_role(self, input: impl Into<String>) -> Self
pub fn tmp_dir_iam_role(self, input: impl Into<String>) -> Self
The IAM role with permissions.
sourcepub fn set_tmp_dir_iam_role(self, input: Option<String>) -> Self
pub fn set_tmp_dir_iam_role(self, input: Option<String>) -> Self
The IAM role with permissions.
sourcepub fn get_tmp_dir_iam_role(&self) -> &Option<String>
pub fn get_tmp_dir_iam_role(&self) -> &Option<String>
The IAM role with permissions.
sourcepub fn upsert_redshift_options(self, input: UpsertRedshiftTargetOptions) -> Self
pub fn upsert_redshift_options(self, input: UpsertRedshiftTargetOptions) -> Self
The set of options to configure an upsert operation when writing to a Redshift target.
sourcepub fn set_upsert_redshift_options(
self,
input: Option<UpsertRedshiftTargetOptions>
) -> Self
pub fn set_upsert_redshift_options( self, input: Option<UpsertRedshiftTargetOptions> ) -> Self
The set of options to configure an upsert operation when writing to a Redshift target.
sourcepub fn get_upsert_redshift_options(
&self
) -> &Option<UpsertRedshiftTargetOptions>
pub fn get_upsert_redshift_options( &self ) -> &Option<UpsertRedshiftTargetOptions>
The set of options to configure an upsert operation when writing to a Redshift target.
sourcepub fn build(self) -> Result<RedshiftTarget, BuildError>
pub fn build(self) -> Result<RedshiftTarget, BuildError>
Consumes the builder and constructs a RedshiftTarget.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RedshiftTargetBuilder
impl Clone for RedshiftTargetBuilder
source§fn clone(&self) -> RedshiftTargetBuilder
fn clone(&self) -> RedshiftTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RedshiftTargetBuilder
impl Debug for RedshiftTargetBuilder
source§impl Default for RedshiftTargetBuilder
impl Default for RedshiftTargetBuilder
source§fn default() -> RedshiftTargetBuilder
fn default() -> RedshiftTargetBuilder
source§impl PartialEq for RedshiftTargetBuilder
impl PartialEq for RedshiftTargetBuilder
source§fn eq(&self, other: &RedshiftTargetBuilder) -> bool
fn eq(&self, other: &RedshiftTargetBuilder) -> bool
self and other values to be equal, and is used
by ==.