This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/CreateHyperParameterTuningJobResult.h

85 lines
3.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sagemaker/SageMaker_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace SageMaker
{
namespace Model
{
class AWS_SAGEMAKER_API CreateHyperParameterTuningJobResult
{
public:
CreateHyperParameterTuningJobResult();
CreateHyperParameterTuningJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateHyperParameterTuningJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline const Aws::String& GetHyperParameterTuningJobArn() const{ return m_hyperParameterTuningJobArn; }
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline void SetHyperParameterTuningJobArn(const Aws::String& value) { m_hyperParameterTuningJobArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline void SetHyperParameterTuningJobArn(Aws::String&& value) { m_hyperParameterTuningJobArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline void SetHyperParameterTuningJobArn(const char* value) { m_hyperParameterTuningJobArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline CreateHyperParameterTuningJobResult& WithHyperParameterTuningJobArn(const Aws::String& value) { SetHyperParameterTuningJobArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline CreateHyperParameterTuningJobResult& WithHyperParameterTuningJobArn(Aws::String&& value) { SetHyperParameterTuningJobArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the tuning job. Amazon SageMaker assigns an
* ARN to a hyperparameter tuning job when you create it.</p>
*/
inline CreateHyperParameterTuningJobResult& WithHyperParameterTuningJobArn(const char* value) { SetHyperParameterTuningJobArn(value); return *this;}
private:
Aws::String m_hyperParameterTuningJobArn;
};
} // namespace Model
} // namespace SageMaker
} // namespace Aws