AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
FormInputValueProperty.h
1
6#pragma once
7#include <aws/amplifyuibuilder/AmplifyUIBuilder_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/amplifyuibuilder/model/FormInputValuePropertyBindingProperties.h>
10#include <aws/core/utils/memory/stl/AWSVector.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 AmplifyUIBuilder
24{
25namespace Model
26{
27
36 {
37 public:
38 AWS_AMPLIFYUIBUILDER_API FormInputValueProperty() = default;
39 AWS_AMPLIFYUIBUILDER_API FormInputValueProperty(Aws::Utils::Json::JsonView jsonValue);
40 AWS_AMPLIFYUIBUILDER_API FormInputValueProperty& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_AMPLIFYUIBUILDER_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetValue() const { return m_value; }
49 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
50 template<typename ValueT = Aws::String>
51 void SetValue(ValueT&& value) { m_valueHasBeenSet = true; m_value = std::forward<ValueT>(value); }
52 template<typename ValueT = Aws::String>
53 FormInputValueProperty& WithValue(ValueT&& value) { SetValue(std::forward<ValueT>(value)); return *this;}
55
57
60 inline const FormInputValuePropertyBindingProperties& GetBindingProperties() const { return m_bindingProperties; }
61 inline bool BindingPropertiesHasBeenSet() const { return m_bindingPropertiesHasBeenSet; }
62 template<typename BindingPropertiesT = FormInputValuePropertyBindingProperties>
63 void SetBindingProperties(BindingPropertiesT&& value) { m_bindingPropertiesHasBeenSet = true; m_bindingProperties = std::forward<BindingPropertiesT>(value); }
64 template<typename BindingPropertiesT = FormInputValuePropertyBindingProperties>
65 FormInputValueProperty& WithBindingProperties(BindingPropertiesT&& value) { SetBindingProperties(std::forward<BindingPropertiesT>(value)); return *this;}
67
69
73 inline const Aws::Vector<FormInputValueProperty>& GetConcat() const { return m_concat; }
74 inline bool ConcatHasBeenSet() const { return m_concatHasBeenSet; }
75 template<typename ConcatT = Aws::Vector<FormInputValueProperty>>
76 void SetConcat(ConcatT&& value) { m_concatHasBeenSet = true; m_concat = std::forward<ConcatT>(value); }
77 template<typename ConcatT = Aws::Vector<FormInputValueProperty>>
78 FormInputValueProperty& WithConcat(ConcatT&& value) { SetConcat(std::forward<ConcatT>(value)); return *this;}
79 template<typename ConcatT = FormInputValueProperty>
80 FormInputValueProperty& AddConcat(ConcatT&& value) { m_concatHasBeenSet = true; m_concat.emplace_back(std::forward<ConcatT>(value)); return *this; }
82 private:
83
84 Aws::String m_value;
85 bool m_valueHasBeenSet = false;
86
88 bool m_bindingPropertiesHasBeenSet = false;
89
91 bool m_concatHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace AmplifyUIBuilder
96} // namespace Aws
AWS_AMPLIFYUIBUILDER_API FormInputValueProperty & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< FormInputValueProperty > & GetConcat() const
FormInputValueProperty & AddConcat(ConcatT &&value)
FormInputValueProperty & WithBindingProperties(BindingPropertiesT &&value)
AWS_AMPLIFYUIBUILDER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_AMPLIFYUIBUILDER_API FormInputValueProperty(Aws::Utils::Json::JsonView jsonValue)
const FormInputValuePropertyBindingProperties & GetBindingProperties() const
FormInputValueProperty & WithConcat(ConcatT &&value)
FormInputValueProperty & WithValue(ValueT &&value)
AWS_AMPLIFYUIBUILDER_API FormInputValueProperty()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue