Struct aws_sdk_entityresolution::types::InputSource
source · #[non_exhaustive]pub struct InputSource {
pub input_source_arn: String,
pub schema_name: String,
pub apply_normalization: Option<bool>,
}
Expand description
An object containing InputSourceARN
, SchemaName
, and ApplyNormalization
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.input_source_arn: String
An Glue table ARN for the input source table.
schema_name: String
The name of the schema to be retrieved.
apply_normalization: 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.
Implementations§
source§impl InputSource
impl InputSource
sourcepub fn input_source_arn(&self) -> &str
pub fn input_source_arn(&self) -> &str
An Glue table ARN for the input source table.
sourcepub fn schema_name(&self) -> &str
pub fn schema_name(&self) -> &str
The name of the schema to be retrieved.
sourcepub fn apply_normalization(&self) -> Option<bool>
pub fn 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.
source§impl InputSource
impl InputSource
sourcepub fn builder() -> InputSourceBuilder
pub fn builder() -> InputSourceBuilder
Creates a new builder-style object to manufacture InputSource
.
Trait Implementations§
source§impl Clone for InputSource
impl Clone for InputSource
source§fn clone(&self) -> InputSource
fn clone(&self) -> InputSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InputSource
impl Debug for InputSource
source§impl PartialEq for InputSource
impl PartialEq for InputSource
source§fn eq(&self, other: &InputSource) -> bool
fn eq(&self, other: &InputSource) -> bool
self
and other
values to be equal, and is used
by ==
.