/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the location of the output produced by the labeling job.
* See Also:
AWS
* API Reference
The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline const Aws::String& GetOutputDatasetS3Uri() const{ return m_outputDatasetS3Uri; } /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline bool OutputDatasetS3UriHasBeenSet() const { return m_outputDatasetS3UriHasBeenSet; } /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline void SetOutputDatasetS3Uri(const Aws::String& value) { m_outputDatasetS3UriHasBeenSet = true; m_outputDatasetS3Uri = value; } /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline void SetOutputDatasetS3Uri(Aws::String&& value) { m_outputDatasetS3UriHasBeenSet = true; m_outputDatasetS3Uri = std::move(value); } /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline void SetOutputDatasetS3Uri(const char* value) { m_outputDatasetS3UriHasBeenSet = true; m_outputDatasetS3Uri.assign(value); } /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline LabelingJobOutput& WithOutputDatasetS3Uri(const Aws::String& value) { SetOutputDatasetS3Uri(value); return *this;} /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline LabelingJobOutput& WithOutputDatasetS3Uri(Aws::String&& value) { SetOutputDatasetS3Uri(std::move(value)); return *this;} /** *The Amazon S3 bucket location of the manifest file for labeled data.
*/ inline LabelingJobOutput& WithOutputDatasetS3Uri(const char* value) { SetOutputDatasetS3Uri(value); return *this;} /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline const Aws::String& GetFinalActiveLearningModelArn() const{ return m_finalActiveLearningModelArn; } /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline bool FinalActiveLearningModelArnHasBeenSet() const { return m_finalActiveLearningModelArnHasBeenSet; } /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline void SetFinalActiveLearningModelArn(const Aws::String& value) { m_finalActiveLearningModelArnHasBeenSet = true; m_finalActiveLearningModelArn = value; } /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline void SetFinalActiveLearningModelArn(Aws::String&& value) { m_finalActiveLearningModelArnHasBeenSet = true; m_finalActiveLearningModelArn = std::move(value); } /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline void SetFinalActiveLearningModelArn(const char* value) { m_finalActiveLearningModelArnHasBeenSet = true; m_finalActiveLearningModelArn.assign(value); } /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline LabelingJobOutput& WithFinalActiveLearningModelArn(const Aws::String& value) { SetFinalActiveLearningModelArn(value); return *this;} /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline LabelingJobOutput& WithFinalActiveLearningModelArn(Aws::String&& value) { SetFinalActiveLearningModelArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) for the most recent SageMaker model trained as * part of automated data labeling.
*/ inline LabelingJobOutput& WithFinalActiveLearningModelArn(const char* value) { SetFinalActiveLearningModelArn(value); return *this;} private: Aws::String m_outputDatasetS3Uri; bool m_outputDatasetS3UriHasBeenSet = false; Aws::String m_finalActiveLearningModelArn; bool m_finalActiveLearningModelArnHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws