AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CategoricalParameter.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMaker
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_SAGEMAKER_API CategoricalParameter();
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline CategoricalParameter& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline CategoricalParameter& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline CategoricalParameter& WithName(const char* value) { SetName(value); return *this;}
55
57
60 inline const Aws::Vector<Aws::String>& GetValue() const{ return m_value; }
61 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
62 inline void SetValue(const Aws::Vector<Aws::String>& value) { m_valueHasBeenSet = true; m_value = value; }
63 inline void SetValue(Aws::Vector<Aws::String>&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
64 inline CategoricalParameter& WithValue(const Aws::Vector<Aws::String>& value) { SetValue(value); return *this;}
65 inline CategoricalParameter& WithValue(Aws::Vector<Aws::String>&& value) { SetValue(std::move(value)); return *this;}
66 inline CategoricalParameter& AddValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value.push_back(value); return *this; }
67 inline CategoricalParameter& AddValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value.push_back(std::move(value)); return *this; }
68 inline CategoricalParameter& AddValue(const char* value) { m_valueHasBeenSet = true; m_value.push_back(value); return *this; }
70 private:
71
72 Aws::String m_name;
73 bool m_nameHasBeenSet = false;
74
76 bool m_valueHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace SageMaker
81} // namespace Aws
void SetValue(Aws::Vector< Aws::String > &&value)
CategoricalParameter & AddValue(Aws::String &&value)
AWS_SAGEMAKER_API CategoricalParameter & operator=(Aws::Utils::Json::JsonView jsonValue)
CategoricalParameter & WithName(const Aws::String &value)
CategoricalParameter & AddValue(const Aws::String &value)
CategoricalParameter & WithValue(Aws::Vector< Aws::String > &&value)
CategoricalParameter & WithValue(const Aws::Vector< Aws::String > &value)
CategoricalParameter & WithName(const char *value)
void SetValue(const Aws::Vector< Aws::String > &value)
CategoricalParameter & AddValue(const char *value)
AWS_SAGEMAKER_API CategoricalParameter(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetValue() const
CategoricalParameter & WithName(Aws::String &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue