/* * 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 { /// /// Provides configuration information for auto-labeling of your data objects. A LabelingJobAlgorithmsConfig /// object must be supplied in order to use auto-labeling. /// public partial class LabelingJobAlgorithmsConfig { private string _initialActiveLearningModelArn; private string _labelingJobAlgorithmSpecificationArn; private LabelingJobResourceConfig _labelingJobResourceConfig; /// /// Gets and sets the property InitialActiveLearningModelArn. /// /// At the end of an auto-label job Ground Truth sends the Amazon Resource Name (ARN) /// of the final model used for auto-labeling. You can use this model as the starting /// point for subsequent similar jobs by providing the ARN of the model here. /// /// [AWSProperty(Min=20, Max=2048)] public string InitialActiveLearningModelArn { get { return this._initialActiveLearningModelArn; } set { this._initialActiveLearningModelArn = value; } } // Check to see if InitialActiveLearningModelArn property is set internal bool IsSetInitialActiveLearningModelArn() { return this._initialActiveLearningModelArn != null; } /// /// Gets and sets the property LabelingJobAlgorithmSpecificationArn. /// /// Specifies the Amazon Resource Name (ARN) of the algorithm used for auto-labeling. /// You must select one of the following ARNs: /// /// /// [AWSProperty(Required=true, Max=2048)] public string LabelingJobAlgorithmSpecificationArn { get { return this._labelingJobAlgorithmSpecificationArn; } set { this._labelingJobAlgorithmSpecificationArn = value; } } // Check to see if LabelingJobAlgorithmSpecificationArn property is set internal bool IsSetLabelingJobAlgorithmSpecificationArn() { return this._labelingJobAlgorithmSpecificationArn != null; } /// /// Gets and sets the property LabelingJobResourceConfig. /// /// Provides configuration information for a labeling job. /// /// public LabelingJobResourceConfig LabelingJobResourceConfig { get { return this._labelingJobResourceConfig; } set { this._labelingJobResourceConfig = value; } } // Check to see if LabelingJobResourceConfig property is set internal bool IsSetLabelingJobResourceConfig() { return this._labelingJobResourceConfig != null; } } }