AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
AppIntegrationsConfiguration.h
1
6#pragma once
7#include <aws/qconnect/QConnect_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 QConnect
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_QCONNECT_API AppIntegrationsConfiguration() = default;
39 AWS_QCONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
77 inline const Aws::String& GetAppIntegrationArn() const { return m_appIntegrationArn; }
78 inline bool AppIntegrationArnHasBeenSet() const { return m_appIntegrationArnHasBeenSet; }
79 template<typename AppIntegrationArnT = Aws::String>
80 void SetAppIntegrationArn(AppIntegrationArnT&& value) { m_appIntegrationArnHasBeenSet = true; m_appIntegrationArn = std::forward<AppIntegrationArnT>(value); }
81 template<typename AppIntegrationArnT = Aws::String>
82 AppIntegrationsConfiguration& WithAppIntegrationArn(AppIntegrationArnT&& value) { SetAppIntegrationArn(std::forward<AppIntegrationArnT>(value)); return *this;}
84
86
105 inline const Aws::Vector<Aws::String>& GetObjectFields() const { return m_objectFields; }
106 inline bool ObjectFieldsHasBeenSet() const { return m_objectFieldsHasBeenSet; }
107 template<typename ObjectFieldsT = Aws::Vector<Aws::String>>
108 void SetObjectFields(ObjectFieldsT&& value) { m_objectFieldsHasBeenSet = true; m_objectFields = std::forward<ObjectFieldsT>(value); }
109 template<typename ObjectFieldsT = Aws::Vector<Aws::String>>
110 AppIntegrationsConfiguration& WithObjectFields(ObjectFieldsT&& value) { SetObjectFields(std::forward<ObjectFieldsT>(value)); return *this;}
111 template<typename ObjectFieldsT = Aws::String>
112 AppIntegrationsConfiguration& AddObjectFields(ObjectFieldsT&& value) { m_objectFieldsHasBeenSet = true; m_objectFields.emplace_back(std::forward<ObjectFieldsT>(value)); return *this; }
114 private:
115
116 Aws::String m_appIntegrationArn;
117 bool m_appIntegrationArnHasBeenSet = false;
118
119 Aws::Vector<Aws::String> m_objectFields;
120 bool m_objectFieldsHasBeenSet = false;
121 };
122
123} // namespace Model
124} // namespace QConnect
125} // namespace Aws
AWS_QCONNECT_API AppIntegrationsConfiguration()=default
AWS_QCONNECT_API AppIntegrationsConfiguration(Aws::Utils::Json::JsonView jsonValue)
AppIntegrationsConfiguration & WithAppIntegrationArn(AppIntegrationArnT &&value)
AppIntegrationsConfiguration & WithObjectFields(ObjectFieldsT &&value)
AppIntegrationsConfiguration & AddObjectFields(ObjectFieldsT &&value)
AWS_QCONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::Vector< Aws::String > & GetObjectFields() const
AWS_QCONNECT_API AppIntegrationsConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue