/* * 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 { /// /// A summary of the model metadata. /// public partial class ModelMetadataSummary { private string _domain; private string _framework; private string _frameworkVersion; private string _model; private string _task; /// /// Gets and sets the property Domain. /// /// The machine learning domain of the model. /// /// [AWSProperty(Required=true)] public string Domain { get { return this._domain; } set { this._domain = value; } } // Check to see if Domain property is set internal bool IsSetDomain() { return this._domain != null; } /// /// Gets and sets the property Framework. /// /// The machine learning framework of the model. /// /// [AWSProperty(Required=true)] public string Framework { get { return this._framework; } set { this._framework = value; } } // Check to see if Framework property is set internal bool IsSetFramework() { return this._framework != null; } /// /// Gets and sets the property FrameworkVersion. /// /// The framework version of the model. /// /// [AWSProperty(Required=true)] public string FrameworkVersion { get { return this._frameworkVersion; } set { this._frameworkVersion = value; } } // Check to see if FrameworkVersion property is set internal bool IsSetFrameworkVersion() { return this._frameworkVersion != null; } /// /// Gets and sets the property Model. /// /// The name of the model. /// /// [AWSProperty(Required=true)] public string Model { get { return this._model; } set { this._model = value; } } // Check to see if Model property is set internal bool IsSetModel() { return this._model != null; } /// /// Gets and sets the property Task. /// /// The machine learning task of the model. /// /// [AWSProperty(Required=true)] public string Task { get { return this._task; } set { this._task = value; } } // Check to see if Task property is set internal bool IsSetTask() { return this._task != null; } } }