AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
ParameterGroup.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dax/DAX_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace DAX {
20namespace Model {
21
29 public:
30 AWS_DAX_API ParameterGroup() = default;
34
36
39 inline const Aws::String& GetParameterGroupName() const { return m_parameterGroupName; }
40 inline bool ParameterGroupNameHasBeenSet() const { return m_parameterGroupNameHasBeenSet; }
41 template <typename ParameterGroupNameT = Aws::String>
42 void SetParameterGroupName(ParameterGroupNameT&& value) {
43 m_parameterGroupNameHasBeenSet = true;
44 m_parameterGroupName = std::forward<ParameterGroupNameT>(value);
45 }
46 template <typename ParameterGroupNameT = Aws::String>
47 ParameterGroup& WithParameterGroupName(ParameterGroupNameT&& value) {
48 SetParameterGroupName(std::forward<ParameterGroupNameT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetDescription() const { return m_description; }
58 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
59 template <typename DescriptionT = Aws::String>
60 void SetDescription(DescriptionT&& value) {
61 m_descriptionHasBeenSet = true;
62 m_description = std::forward<DescriptionT>(value);
63 }
64 template <typename DescriptionT = Aws::String>
65 ParameterGroup& WithDescription(DescriptionT&& value) {
66 SetDescription(std::forward<DescriptionT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_parameterGroupName;
72
73 Aws::String m_description;
74 bool m_parameterGroupNameHasBeenSet = false;
75 bool m_descriptionHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace DAX
80} // namespace Aws
AWS_DAX_API Aws::Utils::Json::JsonValue Jsonize() const
void SetParameterGroupName(ParameterGroupNameT &&value)
AWS_DAX_API ParameterGroup()=default
const Aws::String & GetParameterGroupName() const
const Aws::String & GetDescription() const
ParameterGroup & WithParameterGroupName(ParameterGroupNameT &&value)
AWS_DAX_API ParameterGroup & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetDescription(DescriptionT &&value)
AWS_DAX_API ParameterGroup(Aws::Utils::Json::JsonView jsonValue)
ParameterGroup & WithDescription(DescriptionT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue