#[non_exhaustive]pub struct InputSourceBuilder { /* private fields */ }
Expand description
A builder for InputSource
.
Implementations§
source§impl InputSourceBuilder
impl InputSourceBuilder
sourcepub fn input_source_arn(self, input: impl Into<String>) -> Self
pub fn input_source_arn(self, input: impl Into<String>) -> Self
An Glue table ARN for the input source table.
sourcepub fn set_input_source_arn(self, input: Option<String>) -> Self
pub fn set_input_source_arn(self, input: Option<String>) -> Self
An Glue table ARN for the input source table.
sourcepub fn get_input_source_arn(&self) -> &Option<String>
pub fn get_input_source_arn(&self) -> &Option<String>
An Glue table ARN for the input source table.
sourcepub fn schema_name(self, input: impl Into<String>) -> Self
pub fn schema_name(self, input: impl Into<String>) -> Self
The name of the schema to be retrieved.
sourcepub fn set_schema_name(self, input: Option<String>) -> Self
pub fn set_schema_name(self, input: Option<String>) -> Self
The name of the schema to be retrieved.
sourcepub fn get_schema_name(&self) -> &Option<String>
pub fn get_schema_name(&self) -> &Option<String>
The name of the schema to be retrieved.
sourcepub fn apply_normalization(self, input: bool) -> Self
pub fn apply_normalization(self, input: bool) -> Self
Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType
of PHONE_NUMBER
, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.
sourcepub fn set_apply_normalization(self, input: Option<bool>) -> Self
pub fn set_apply_normalization(self, input: Option<bool>) -> Self
Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType
of PHONE_NUMBER
, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.
sourcepub fn get_apply_normalization(&self) -> &Option<bool>
pub fn get_apply_normalization(&self) -> &Option<bool>
Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType
of PHONE_NUMBER
, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.
sourcepub fn build(self) -> InputSource
pub fn build(self) -> InputSource
Consumes the builder and constructs a InputSource
.
Trait Implementations§
source§impl Clone for InputSourceBuilder
impl Clone for InputSourceBuilder
source§fn clone(&self) -> InputSourceBuilder
fn clone(&self) -> InputSourceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InputSourceBuilder
impl Debug for InputSourceBuilder
source§impl Default for InputSourceBuilder
impl Default for InputSourceBuilder
source§fn default() -> InputSourceBuilder
fn default() -> InputSourceBuilder
source§impl PartialEq for InputSourceBuilder
impl PartialEq for InputSourceBuilder
source§fn eq(&self, other: &InputSourceBuilder) -> bool
fn eq(&self, other: &InputSourceBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.