/* * 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 glue-2017-03-31.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.Glue.Model { /// /// Specifies your data quality evaluation criteria. /// public partial class EvaluateDataQualityMultiFrame { private Dictionary _additionalDataSources = new Dictionary(); private Dictionary _additionalOptions = new Dictionary(); private List _inputs = new List(); private string _name; private DQResultsPublishingOptions _publishingOptions; private string _ruleset; private DQStopJobOnFailureOptions _stopJobOnFailureOptions; /// /// Gets and sets the property AdditionalDataSources. /// /// The aliases of all data sources except primary. /// /// public Dictionary AdditionalDataSources { get { return this._additionalDataSources; } set { this._additionalDataSources = value; } } // Check to see if AdditionalDataSources property is set internal bool IsSetAdditionalDataSources() { return this._additionalDataSources != null && this._additionalDataSources.Count > 0; } /// /// Gets and sets the property AdditionalOptions. /// /// Options to configure runtime behavior of the transform. /// /// public Dictionary AdditionalOptions { get { return this._additionalOptions; } set { this._additionalOptions = value; } } // Check to see if AdditionalOptions property is set internal bool IsSetAdditionalOptions() { return this._additionalOptions != null && this._additionalOptions.Count > 0; } /// /// Gets and sets the property Inputs. /// /// The inputs of your data quality evaluation. The first input in this list is the primary /// data source. /// /// [AWSProperty(Required=true, Min=1)] public List Inputs { get { return this._inputs; } set { this._inputs = value; } } // Check to see if Inputs property is set internal bool IsSetInputs() { return this._inputs != null && this._inputs.Count > 0; } /// /// Gets and sets the property Name. /// /// The name of the data quality evaluation. /// /// [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// /// Gets and sets the property PublishingOptions. /// /// Options to configure how your results are published. /// /// public DQResultsPublishingOptions PublishingOptions { get { return this._publishingOptions; } set { this._publishingOptions = value; } } // Check to see if PublishingOptions property is set internal bool IsSetPublishingOptions() { return this._publishingOptions != null; } /// /// Gets and sets the property Ruleset. /// /// The ruleset for your data quality evaluation. /// /// [AWSProperty(Required=true, Min=1, Max=65536)] public string Ruleset { get { return this._ruleset; } set { this._ruleset = value; } } // Check to see if Ruleset property is set internal bool IsSetRuleset() { return this._ruleset != null; } /// /// Gets and sets the property StopJobOnFailureOptions. /// /// Options to configure how your job will stop if your data quality evaluation fails. /// /// public DQStopJobOnFailureOptions StopJobOnFailureOptions { get { return this._stopJobOnFailureOptions; } set { this._stopJobOnFailureOptions = value; } } // Check to see if StopJobOnFailureOptions property is set internal bool IsSetStopJobOnFailureOptions() { return this._stopJobOnFailureOptions != null; } } }