/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class CreateHyperParameterTuningJobResult { public: AWS_SAGEMAKER_API CreateHyperParameterTuningJobResult(); AWS_SAGEMAKER_API CreateHyperParameterTuningJobResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKER_API CreateHyperParameterTuningJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline const Aws::String& GetHyperParameterTuningJobArn() const{ return m_hyperParameterTuningJobArn; } /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline void SetHyperParameterTuningJobArn(const Aws::String& value) { m_hyperParameterTuningJobArn = value; } /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline void SetHyperParameterTuningJobArn(Aws::String&& value) { m_hyperParameterTuningJobArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline void SetHyperParameterTuningJobArn(const char* value) { m_hyperParameterTuningJobArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline CreateHyperParameterTuningJobResult& WithHyperParameterTuningJobArn(const Aws::String& value) { SetHyperParameterTuningJobArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline CreateHyperParameterTuningJobResult& WithHyperParameterTuningJobArn(Aws::String&& value) { SetHyperParameterTuningJobArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the tuning job. SageMaker assigns an ARN to * a hyperparameter tuning job when you create it.

*/ inline CreateHyperParameterTuningJobResult& WithHyperParameterTuningJobArn(const char* value) { SetHyperParameterTuningJobArn(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateHyperParameterTuningJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateHyperParameterTuningJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateHyperParameterTuningJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_hyperParameterTuningJobArn; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws