AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetEventIntegrationResult.h
1
6#pragma once
7#include <aws/appintegrations/AppIntegrationsService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/appintegrations/model/EventFilter.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace AppIntegrationsService
26{
27namespace Model
28{
30 {
31 public:
32 AWS_APPINTEGRATIONSSERVICE_API GetEventIntegrationResult();
35
36
38
41 inline const Aws::String& GetName() const{ return m_name; }
42 inline void SetName(const Aws::String& value) { m_name = value; }
43 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
44 inline void SetName(const char* value) { m_name.assign(value); }
45 inline GetEventIntegrationResult& WithName(const Aws::String& value) { SetName(value); return *this;}
46 inline GetEventIntegrationResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
47 inline GetEventIntegrationResult& WithName(const char* value) { SetName(value); return *this;}
49
51
54 inline const Aws::String& GetDescription() const{ return m_description; }
55 inline void SetDescription(const Aws::String& value) { m_description = value; }
56 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
57 inline void SetDescription(const char* value) { m_description.assign(value); }
58 inline GetEventIntegrationResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
59 inline GetEventIntegrationResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
60 inline GetEventIntegrationResult& WithDescription(const char* value) { SetDescription(value); return *this;}
62
64
67 inline const Aws::String& GetEventIntegrationArn() const{ return m_eventIntegrationArn; }
68 inline void SetEventIntegrationArn(const Aws::String& value) { m_eventIntegrationArn = value; }
69 inline void SetEventIntegrationArn(Aws::String&& value) { m_eventIntegrationArn = std::move(value); }
70 inline void SetEventIntegrationArn(const char* value) { m_eventIntegrationArn.assign(value); }
72 inline GetEventIntegrationResult& WithEventIntegrationArn(Aws::String&& value) { SetEventIntegrationArn(std::move(value)); return *this;}
73 inline GetEventIntegrationResult& WithEventIntegrationArn(const char* value) { SetEventIntegrationArn(value); return *this;}
75
77
80 inline const Aws::String& GetEventBridgeBus() const{ return m_eventBridgeBus; }
81 inline void SetEventBridgeBus(const Aws::String& value) { m_eventBridgeBus = value; }
82 inline void SetEventBridgeBus(Aws::String&& value) { m_eventBridgeBus = std::move(value); }
83 inline void SetEventBridgeBus(const char* value) { m_eventBridgeBus.assign(value); }
84 inline GetEventIntegrationResult& WithEventBridgeBus(const Aws::String& value) { SetEventBridgeBus(value); return *this;}
85 inline GetEventIntegrationResult& WithEventBridgeBus(Aws::String&& value) { SetEventBridgeBus(std::move(value)); return *this;}
86 inline GetEventIntegrationResult& WithEventBridgeBus(const char* value) { SetEventBridgeBus(value); return *this;}
88
90
93 inline const EventFilter& GetEventFilter() const{ return m_eventFilter; }
94 inline void SetEventFilter(const EventFilter& value) { m_eventFilter = value; }
95 inline void SetEventFilter(EventFilter&& value) { m_eventFilter = std::move(value); }
96 inline GetEventIntegrationResult& WithEventFilter(const EventFilter& value) { SetEventFilter(value); return *this;}
97 inline GetEventIntegrationResult& WithEventFilter(EventFilter&& value) { SetEventFilter(std::move(value)); return *this;}
99
101
105 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
106 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
107 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
109 inline GetEventIntegrationResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
110 inline GetEventIntegrationResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
111 inline GetEventIntegrationResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
112 inline GetEventIntegrationResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
113 inline GetEventIntegrationResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
114 inline GetEventIntegrationResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
115 inline GetEventIntegrationResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
116 inline GetEventIntegrationResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
118
120
121 inline const Aws::String& GetRequestId() const{ return m_requestId; }
122 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
123 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
124 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
125 inline GetEventIntegrationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
126 inline GetEventIntegrationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
127 inline GetEventIntegrationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
129 private:
130
131 Aws::String m_name;
132
133 Aws::String m_description;
134
135 Aws::String m_eventIntegrationArn;
136
137 Aws::String m_eventBridgeBus;
138
139 EventFilter m_eventFilter;
140
142
143 Aws::String m_requestId;
144 };
145
146} // namespace Model
147} // namespace AppIntegrationsService
148} // namespace Aws
GetEventIntegrationResult & WithEventBridgeBus(Aws::String &&value)
GetEventIntegrationResult & WithName(Aws::String &&value)
GetEventIntegrationResult & WithDescription(const char *value)
GetEventIntegrationResult & WithEventFilter(EventFilter &&value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
GetEventIntegrationResult & WithName(const Aws::String &value)
GetEventIntegrationResult & AddTags(Aws::String &&key, const Aws::String &value)
GetEventIntegrationResult & AddTags(Aws::String &&key, const char *value)
GetEventIntegrationResult & WithEventIntegrationArn(const Aws::String &value)
GetEventIntegrationResult & AddTags(const char *key, Aws::String &&value)
GetEventIntegrationResult & WithEventBridgeBus(const Aws::String &value)
GetEventIntegrationResult & WithEventBridgeBus(const char *value)
GetEventIntegrationResult & WithDescription(Aws::String &&value)
GetEventIntegrationResult & WithEventFilter(const EventFilter &value)
GetEventIntegrationResult & AddTags(const Aws::String &key, Aws::String &&value)
GetEventIntegrationResult & AddTags(const char *key, const char *value)
AWS_APPINTEGRATIONSSERVICE_API GetEventIntegrationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
GetEventIntegrationResult & WithDescription(const Aws::String &value)
GetEventIntegrationResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
GetEventIntegrationResult & AddTags(const Aws::String &key, const Aws::String &value)
GetEventIntegrationResult & WithEventIntegrationArn(Aws::String &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
AWS_APPINTEGRATIONSSERVICE_API GetEventIntegrationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetEventIntegrationResult & WithRequestId(const Aws::String &value)
GetEventIntegrationResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
GetEventIntegrationResult & WithEventIntegrationArn(const char *value)
GetEventIntegrationResult & AddTags(Aws::String &&key, Aws::String &&value)
GetEventIntegrationResult & WithRequestId(Aws::String &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue