/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the entityresolution-2018-05-10.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.EntityResolution.Model { /// /// An object containing InputSourceARN, SchemaName, and ApplyNormalization. /// public partial class InputSource { private bool? _applyNormalization; private string _inputSourceARN; private string _schemaName; /// /// Gets and sets the property ApplyNormalization. /// /// 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. /// /// public bool ApplyNormalization { get { return this._applyNormalization.GetValueOrDefault(); } set { this._applyNormalization = value; } } // Check to see if ApplyNormalization property is set internal bool IsSetApplyNormalization() { return this._applyNormalization.HasValue; } /// /// Gets and sets the property InputSourceARN. /// /// An Glue table ARN for the input source table. /// /// [AWSProperty(Required=true)] public string InputSourceARN { get { return this._inputSourceARN; } set { this._inputSourceARN = value; } } // Check to see if InputSourceARN property is set internal bool IsSetInputSourceARN() { return this._inputSourceARN != null; } /// /// Gets and sets the property SchemaName. /// /// The name of the schema to be retrieved. /// /// [AWSProperty(Required=true, Min=0, Max=255)] public string SchemaName { get { return this._schemaName; } set { this._schemaName = value; } } // Check to see if SchemaName property is set internal bool IsSetSchemaName() { return this._schemaName != null; } } }