AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Parent.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 class Parent
34 {
35 public:
36 AWS_SAGEMAKER_API Parent();
37 AWS_SAGEMAKER_API Parent(Aws::Utils::Json::JsonView jsonValue);
38 AWS_SAGEMAKER_API Parent& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetTrialName() const{ return m_trialName; }
47 inline bool TrialNameHasBeenSet() const { return m_trialNameHasBeenSet; }
48 inline void SetTrialName(const Aws::String& value) { m_trialNameHasBeenSet = true; m_trialName = value; }
49 inline void SetTrialName(Aws::String&& value) { m_trialNameHasBeenSet = true; m_trialName = std::move(value); }
50 inline void SetTrialName(const char* value) { m_trialNameHasBeenSet = true; m_trialName.assign(value); }
51 inline Parent& WithTrialName(const Aws::String& value) { SetTrialName(value); return *this;}
52 inline Parent& WithTrialName(Aws::String&& value) { SetTrialName(std::move(value)); return *this;}
53 inline Parent& WithTrialName(const char* value) { SetTrialName(value); return *this;}
55
57
60 inline const Aws::String& GetExperimentName() const{ return m_experimentName; }
61 inline bool ExperimentNameHasBeenSet() const { return m_experimentNameHasBeenSet; }
62 inline void SetExperimentName(const Aws::String& value) { m_experimentNameHasBeenSet = true; m_experimentName = value; }
63 inline void SetExperimentName(Aws::String&& value) { m_experimentNameHasBeenSet = true; m_experimentName = std::move(value); }
64 inline void SetExperimentName(const char* value) { m_experimentNameHasBeenSet = true; m_experimentName.assign(value); }
65 inline Parent& WithExperimentName(const Aws::String& value) { SetExperimentName(value); return *this;}
66 inline Parent& WithExperimentName(Aws::String&& value) { SetExperimentName(std::move(value)); return *this;}
67 inline Parent& WithExperimentName(const char* value) { SetExperimentName(value); return *this;}
69 private:
70
71 Aws::String m_trialName;
72 bool m_trialNameHasBeenSet = false;
73
74 Aws::String m_experimentName;
75 bool m_experimentNameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace SageMaker
80} // namespace Aws
AWS_SAGEMAKER_API Parent()
bool TrialNameHasBeenSet() const
Definition Parent.h:47
void SetExperimentName(Aws::String &&value)
Definition Parent.h:63
Parent & WithTrialName(const Aws::String &value)
Definition Parent.h:51
Parent & WithTrialName(const char *value)
Definition Parent.h:53
AWS_SAGEMAKER_API Parent(Aws::Utils::Json::JsonView jsonValue)
bool ExperimentNameHasBeenSet() const
Definition Parent.h:61
Parent & WithExperimentName(Aws::String &&value)
Definition Parent.h:66
void SetTrialName(const char *value)
Definition Parent.h:50
const Aws::String & GetTrialName() const
Definition Parent.h:46
void SetExperimentName(const char *value)
Definition Parent.h:64
void SetExperimentName(const Aws::String &value)
Definition Parent.h:62
Parent & WithTrialName(Aws::String &&value)
Definition Parent.h:52
const Aws::String & GetExperimentName() const
Definition Parent.h:60
void SetTrialName(const Aws::String &value)
Definition Parent.h:48
Parent & WithExperimentName(const char *value)
Definition Parent.h:67
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API Parent & operator=(Aws::Utils::Json::JsonView jsonValue)
Parent & WithExperimentName(const Aws::String &value)
Definition Parent.h:65
void SetTrialName(Aws::String &&value)
Definition Parent.h:49
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue