AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Parameter.h
1
6#pragma once
7#include <aws/appconfig/AppConfig_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 AppConfig
22{
23namespace Model
24{
25
37 {
38 public:
39 AWS_APPCONFIG_API Parameter();
40 AWS_APPCONFIG_API Parameter(Aws::Utils::Json::JsonView jsonValue);
41 AWS_APPCONFIG_API Parameter& operator=(Aws::Utils::Json::JsonView jsonValue);
42 AWS_APPCONFIG_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const Aws::String& GetDescription() const{ return m_description; }
50 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
51 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
52 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
53 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
54 inline Parameter& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
55 inline Parameter& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
56 inline Parameter& WithDescription(const char* value) { SetDescription(value); return *this;}
58
60
63 inline bool GetRequired() const{ return m_required; }
64 inline bool RequiredHasBeenSet() const { return m_requiredHasBeenSet; }
65 inline void SetRequired(bool value) { m_requiredHasBeenSet = true; m_required = value; }
66 inline Parameter& WithRequired(bool value) { SetRequired(value); return *this;}
68
70
75 inline bool GetDynamic() const{ return m_dynamic; }
76 inline bool DynamicHasBeenSet() const { return m_dynamicHasBeenSet; }
77 inline void SetDynamic(bool value) { m_dynamicHasBeenSet = true; m_dynamic = value; }
78 inline Parameter& WithDynamic(bool value) { SetDynamic(value); return *this;}
80 private:
81
82 Aws::String m_description;
83 bool m_descriptionHasBeenSet = false;
84
85 bool m_required;
86 bool m_requiredHasBeenSet = false;
87
88 bool m_dynamic;
89 bool m_dynamicHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace AppConfig
94} // namespace Aws
AWS_APPCONFIG_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_APPCONFIG_API Parameter()
Parameter & WithDescription(const char *value)
Definition Parameter.h:56
void SetDescription(const char *value)
Definition Parameter.h:53
Parameter & WithDescription(const Aws::String &value)
Definition Parameter.h:54
void SetDescription(const Aws::String &value)
Definition Parameter.h:51
void SetDescription(Aws::String &&value)
Definition Parameter.h:52
Parameter & WithDynamic(bool value)
Definition Parameter.h:78
AWS_APPCONFIG_API Parameter & operator=(Aws::Utils::Json::JsonView jsonValue)
Parameter & WithDescription(Aws::String &&value)
Definition Parameter.h:55
Parameter & WithRequired(bool value)
Definition Parameter.h:66
AWS_APPCONFIG_API Parameter(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetDescription() const
Definition Parameter.h:49
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue