/* * 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 sagemaker-2017-07-24.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.SageMaker.Model { /// /// Represents the drift check baselines that can be used when the model monitor is set /// using the model package. /// public partial class DriftCheckBaselines { private DriftCheckBias _bias; private DriftCheckExplainability _explainability; private DriftCheckModelDataQuality _modelDataQuality; private DriftCheckModelQuality _modelQuality; /// /// Gets and sets the property Bias. /// /// Represents the drift check bias baselines that can be used when the model monitor /// is set using the model package. /// /// public DriftCheckBias Bias { get { return this._bias; } set { this._bias = value; } } // Check to see if Bias property is set internal bool IsSetBias() { return this._bias != null; } /// /// Gets and sets the property Explainability. /// /// Represents the drift check explainability baselines that can be used when the model /// monitor is set using the model package. /// /// public DriftCheckExplainability Explainability { get { return this._explainability; } set { this._explainability = value; } } // Check to see if Explainability property is set internal bool IsSetExplainability() { return this._explainability != null; } /// /// Gets and sets the property ModelDataQuality. /// /// Represents the drift check model data quality baselines that can be used when the /// model monitor is set using the model package. /// /// public DriftCheckModelDataQuality ModelDataQuality { get { return this._modelDataQuality; } set { this._modelDataQuality = value; } } // Check to see if ModelDataQuality property is set internal bool IsSetModelDataQuality() { return this._modelDataQuality != null; } /// /// Gets and sets the property ModelQuality. /// /// Represents the drift check model quality baselines that can be used when the model /// monitor is set using the model package. /// /// public DriftCheckModelQuality ModelQuality { get { return this._modelQuality; } set { this._modelQuality = value; } } // Check to see if ModelQuality property is set internal bool IsSetModelQuality() { return this._modelQuality != null; } } }