/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Specifies the location of the output produced by the labeling job. *

See Also:

AWS * API Reference

*/ class LabelingJobOutput { public: AWS_SAGEMAKER_API LabelingJobOutput(); AWS_SAGEMAKER_API LabelingJobOutput(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API LabelingJobOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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