AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
PipelineExperimentConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SageMaker
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_SAGEMAKER_API PipelineExperimentConfig() = default;
38 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetExperimentName() const { return m_experimentName; }
46 inline bool ExperimentNameHasBeenSet() const { return m_experimentNameHasBeenSet; }
47 template<typename ExperimentNameT = Aws::String>
48 void SetExperimentName(ExperimentNameT&& value) { m_experimentNameHasBeenSet = true; m_experimentName = std::forward<ExperimentNameT>(value); }
49 template<typename ExperimentNameT = Aws::String>
50 PipelineExperimentConfig& WithExperimentName(ExperimentNameT&& value) { SetExperimentName(std::forward<ExperimentNameT>(value)); return *this;}
52
54
57 inline const Aws::String& GetTrialName() const { return m_trialName; }
58 inline bool TrialNameHasBeenSet() const { return m_trialNameHasBeenSet; }
59 template<typename TrialNameT = Aws::String>
60 void SetTrialName(TrialNameT&& value) { m_trialNameHasBeenSet = true; m_trialName = std::forward<TrialNameT>(value); }
61 template<typename TrialNameT = Aws::String>
62 PipelineExperimentConfig& WithTrialName(TrialNameT&& value) { SetTrialName(std::forward<TrialNameT>(value)); return *this;}
64 private:
65
66 Aws::String m_experimentName;
67 bool m_experimentNameHasBeenSet = false;
68
69 Aws::String m_trialName;
70 bool m_trialNameHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace SageMaker
75} // namespace Aws
PipelineExperimentConfig & WithTrialName(TrialNameT &&value)
PipelineExperimentConfig & WithExperimentName(ExperimentNameT &&value)
AWS_SAGEMAKER_API PipelineExperimentConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API PipelineExperimentConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API PipelineExperimentConfig()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue