AWS SDK for C++

AWS SDK for C++ Version 1.11.761

Loading...
Searching...
No Matches
ConformancePackInputParameter.h
1
6#pragma once
7#include <aws/config/ConfigService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace ConfigService {
20namespace Model {
21
31 public:
32 AWS_CONFIGSERVICE_API ConformancePackInputParameter() = default;
35 AWS_CONFIGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetParameterName() const { return m_parameterName; }
42 inline bool ParameterNameHasBeenSet() const { return m_parameterNameHasBeenSet; }
43 template <typename ParameterNameT = Aws::String>
44 void SetParameterName(ParameterNameT&& value) {
45 m_parameterNameHasBeenSet = true;
46 m_parameterName = std::forward<ParameterNameT>(value);
47 }
48 template <typename ParameterNameT = Aws::String>
50 SetParameterName(std::forward<ParameterNameT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetParameterValue() const { return m_parameterValue; }
60 inline bool ParameterValueHasBeenSet() const { return m_parameterValueHasBeenSet; }
61 template <typename ParameterValueT = Aws::String>
62 void SetParameterValue(ParameterValueT&& value) {
63 m_parameterValueHasBeenSet = true;
64 m_parameterValue = std::forward<ParameterValueT>(value);
65 }
66 template <typename ParameterValueT = Aws::String>
68 SetParameterValue(std::forward<ParameterValueT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_parameterName;
74
75 Aws::String m_parameterValue;
76 bool m_parameterNameHasBeenSet = false;
77 bool m_parameterValueHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace ConfigService
82} // namespace Aws
AWS_CONFIGSERVICE_API ConformancePackInputParameter(Aws::Utils::Json::JsonView jsonValue)
AWS_CONFIGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
ConformancePackInputParameter & WithParameterName(ParameterNameT &&value)
ConformancePackInputParameter & WithParameterValue(ParameterValueT &&value)
AWS_CONFIGSERVICE_API ConformancePackInputParameter & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONFIGSERVICE_API ConformancePackInputParameter()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue