AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ExperimentSummary.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/model/ExperimentSource.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace SageMaker
24{
25namespace Model
26{
27
37 {
38 public:
39 AWS_SAGEMAKER_API ExperimentSummary();
40 AWS_SAGEMAKER_API ExperimentSummary(Aws::Utils::Json::JsonView jsonValue);
42 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const Aws::String& GetExperimentArn() const{ return m_experimentArn; }
50 inline bool ExperimentArnHasBeenSet() const { return m_experimentArnHasBeenSet; }
51 inline void SetExperimentArn(const Aws::String& value) { m_experimentArnHasBeenSet = true; m_experimentArn = value; }
52 inline void SetExperimentArn(Aws::String&& value) { m_experimentArnHasBeenSet = true; m_experimentArn = std::move(value); }
53 inline void SetExperimentArn(const char* value) { m_experimentArnHasBeenSet = true; m_experimentArn.assign(value); }
54 inline ExperimentSummary& WithExperimentArn(const Aws::String& value) { SetExperimentArn(value); return *this;}
55 inline ExperimentSummary& WithExperimentArn(Aws::String&& value) { SetExperimentArn(std::move(value)); return *this;}
56 inline ExperimentSummary& WithExperimentArn(const char* value) { SetExperimentArn(value); return *this;}
58
60
63 inline const Aws::String& GetExperimentName() const{ return m_experimentName; }
64 inline bool ExperimentNameHasBeenSet() const { return m_experimentNameHasBeenSet; }
65 inline void SetExperimentName(const Aws::String& value) { m_experimentNameHasBeenSet = true; m_experimentName = value; }
66 inline void SetExperimentName(Aws::String&& value) { m_experimentNameHasBeenSet = true; m_experimentName = std::move(value); }
67 inline void SetExperimentName(const char* value) { m_experimentNameHasBeenSet = true; m_experimentName.assign(value); }
68 inline ExperimentSummary& WithExperimentName(const Aws::String& value) { SetExperimentName(value); return *this;}
69 inline ExperimentSummary& WithExperimentName(Aws::String&& value) { SetExperimentName(std::move(value)); return *this;}
70 inline ExperimentSummary& WithExperimentName(const char* value) { SetExperimentName(value); return *this;}
72
74
78 inline const Aws::String& GetDisplayName() const{ return m_displayName; }
79 inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; }
80 inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; }
81 inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); }
82 inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); }
83 inline ExperimentSummary& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;}
84 inline ExperimentSummary& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;}
85 inline ExperimentSummary& WithDisplayName(const char* value) { SetDisplayName(value); return *this;}
87
89
90 inline const ExperimentSource& GetExperimentSource() const{ return m_experimentSource; }
91 inline bool ExperimentSourceHasBeenSet() const { return m_experimentSourceHasBeenSet; }
92 inline void SetExperimentSource(const ExperimentSource& value) { m_experimentSourceHasBeenSet = true; m_experimentSource = value; }
93 inline void SetExperimentSource(ExperimentSource&& value) { m_experimentSourceHasBeenSet = true; m_experimentSource = std::move(value); }
94 inline ExperimentSummary& WithExperimentSource(const ExperimentSource& value) { SetExperimentSource(value); return *this;}
95 inline ExperimentSummary& WithExperimentSource(ExperimentSource&& value) { SetExperimentSource(std::move(value)); return *this;}
97
99
102 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
103 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
104 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; }
105 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); }
106 inline ExperimentSummary& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;}
107 inline ExperimentSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;}
109
111
114 inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
115 inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
116 inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; }
117 inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); }
119 inline ExperimentSummary& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;}
121 private:
122
123 Aws::String m_experimentArn;
124 bool m_experimentArnHasBeenSet = false;
125
126 Aws::String m_experimentName;
127 bool m_experimentNameHasBeenSet = false;
128
129 Aws::String m_displayName;
130 bool m_displayNameHasBeenSet = false;
131
132 ExperimentSource m_experimentSource;
133 bool m_experimentSourceHasBeenSet = false;
134
135 Aws::Utils::DateTime m_creationTime;
136 bool m_creationTimeHasBeenSet = false;
137
138 Aws::Utils::DateTime m_lastModifiedTime;
139 bool m_lastModifiedTimeHasBeenSet = false;
140 };
141
142} // namespace Model
143} // namespace SageMaker
144} // namespace Aws
ExperimentSummary & WithExperimentName(const Aws::String &value)
ExperimentSummary & WithCreationTime(Aws::Utils::DateTime &&value)
void SetDisplayName(const Aws::String &value)
const Aws::String & GetExperimentArn() const
const Aws::String & GetExperimentName() const
AWS_SAGEMAKER_API ExperimentSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetExperimentSource(const ExperimentSource &value)
ExperimentSummary & WithDisplayName(const char *value)
ExperimentSummary & WithExperimentArn(Aws::String &&value)
void SetCreationTime(Aws::Utils::DateTime &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
ExperimentSummary & WithExperimentSource(const ExperimentSource &value)
ExperimentSummary & WithCreationTime(const Aws::Utils::DateTime &value)
const ExperimentSource & GetExperimentSource() const
ExperimentSummary & WithExperimentArn(const char *value)
ExperimentSummary & WithDisplayName(const Aws::String &value)
const Aws::String & GetDisplayName() const
void SetLastModifiedTime(Aws::Utils::DateTime &&value)
void SetLastModifiedTime(const Aws::Utils::DateTime &value)
ExperimentSummary & WithLastModifiedTime(Aws::Utils::DateTime &&value)
ExperimentSummary & WithExperimentArn(const Aws::String &value)
void SetExperimentArn(const Aws::String &value)
ExperimentSummary & WithLastModifiedTime(const Aws::Utils::DateTime &value)
ExperimentSummary & WithExperimentName(const char *value)
ExperimentSummary & WithExperimentSource(ExperimentSource &&value)
void SetExperimentSource(ExperimentSource &&value)
void SetExperimentName(const Aws::String &value)
void SetCreationTime(const Aws::Utils::DateTime &value)
ExperimentSummary & WithExperimentName(Aws::String &&value)
void SetExperimentName(Aws::String &&value)
AWS_SAGEMAKER_API ExperimentSummary(Aws::Utils::Json::JsonView jsonValue)
const Aws::Utils::DateTime & GetLastModifiedTime() const
const Aws::Utils::DateTime & GetCreationTime() const
ExperimentSummary & WithDisplayName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue