AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetChannelGroupResult.h
1
6#pragma once
7#include <aws/mediapackagev2/Mediapackagev2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.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 mediapackagev2
26{
27namespace Model
28{
30 {
31 public:
32 AWS_MEDIAPACKAGEV2_API GetChannelGroupResult();
35
36
38
43 inline const Aws::String& GetChannelGroupName() const{ return m_channelGroupName; }
44 inline void SetChannelGroupName(const Aws::String& value) { m_channelGroupName = value; }
45 inline void SetChannelGroupName(Aws::String&& value) { m_channelGroupName = std::move(value); }
46 inline void SetChannelGroupName(const char* value) { m_channelGroupName.assign(value); }
47 inline GetChannelGroupResult& WithChannelGroupName(const Aws::String& value) { SetChannelGroupName(value); return *this;}
48 inline GetChannelGroupResult& WithChannelGroupName(Aws::String&& value) { SetChannelGroupName(std::move(value)); return *this;}
49 inline GetChannelGroupResult& WithChannelGroupName(const char* value) { SetChannelGroupName(value); return *this;}
51
53
56 inline const Aws::String& GetArn() const{ return m_arn; }
57 inline void SetArn(const Aws::String& value) { m_arn = value; }
58 inline void SetArn(Aws::String&& value) { m_arn = std::move(value); }
59 inline void SetArn(const char* value) { m_arn.assign(value); }
60 inline GetChannelGroupResult& WithArn(const Aws::String& value) { SetArn(value); return *this;}
61 inline GetChannelGroupResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
62 inline GetChannelGroupResult& WithArn(const char* value) { SetArn(value); return *this;}
64
66
70 inline const Aws::String& GetEgressDomain() const{ return m_egressDomain; }
71 inline void SetEgressDomain(const Aws::String& value) { m_egressDomain = value; }
72 inline void SetEgressDomain(Aws::String&& value) { m_egressDomain = std::move(value); }
73 inline void SetEgressDomain(const char* value) { m_egressDomain.assign(value); }
74 inline GetChannelGroupResult& WithEgressDomain(const Aws::String& value) { SetEgressDomain(value); return *this;}
75 inline GetChannelGroupResult& WithEgressDomain(Aws::String&& value) { SetEgressDomain(std::move(value)); return *this;}
76 inline GetChannelGroupResult& WithEgressDomain(const char* value) { SetEgressDomain(value); return *this;}
78
80
83 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
84 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
85 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
86 inline GetChannelGroupResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
87 inline GetChannelGroupResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
89
91
94 inline const Aws::Utils::DateTime& GetModifiedAt() const{ return m_modifiedAt; }
95 inline void SetModifiedAt(const Aws::Utils::DateTime& value) { m_modifiedAt = value; }
96 inline void SetModifiedAt(Aws::Utils::DateTime&& value) { m_modifiedAt = std::move(value); }
97 inline GetChannelGroupResult& WithModifiedAt(const Aws::Utils::DateTime& value) { SetModifiedAt(value); return *this;}
98 inline GetChannelGroupResult& WithModifiedAt(Aws::Utils::DateTime&& value) { SetModifiedAt(std::move(value)); return *this;}
100
102
105 inline const Aws::String& GetDescription() const{ return m_description; }
106 inline void SetDescription(const Aws::String& value) { m_description = value; }
107 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
108 inline void SetDescription(const char* value) { m_description.assign(value); }
109 inline GetChannelGroupResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
110 inline GetChannelGroupResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
111 inline GetChannelGroupResult& WithDescription(const char* value) { SetDescription(value); return *this;}
113
115
119 inline const Aws::String& GetETag() const{ return m_eTag; }
120 inline void SetETag(const Aws::String& value) { m_eTag = value; }
121 inline void SetETag(Aws::String&& value) { m_eTag = std::move(value); }
122 inline void SetETag(const char* value) { m_eTag.assign(value); }
123 inline GetChannelGroupResult& WithETag(const Aws::String& value) { SetETag(value); return *this;}
124 inline GetChannelGroupResult& WithETag(Aws::String&& value) { SetETag(std::move(value)); return *this;}
125 inline GetChannelGroupResult& WithETag(const char* value) { SetETag(value); return *this;}
127
129
133 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
134 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
135 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
136 inline GetChannelGroupResult& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
137 inline GetChannelGroupResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
138 inline GetChannelGroupResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
139 inline GetChannelGroupResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
140 inline GetChannelGroupResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
141 inline GetChannelGroupResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
142 inline GetChannelGroupResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
143 inline GetChannelGroupResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
144 inline GetChannelGroupResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
146
148
149 inline const Aws::String& GetRequestId() const{ return m_requestId; }
150 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
151 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
152 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
153 inline GetChannelGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
154 inline GetChannelGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
155 inline GetChannelGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
157 private:
158
159 Aws::String m_channelGroupName;
160
161 Aws::String m_arn;
162
163 Aws::String m_egressDomain;
164
165 Aws::Utils::DateTime m_createdAt;
166
167 Aws::Utils::DateTime m_modifiedAt;
168
169 Aws::String m_description;
170
171 Aws::String m_eTag;
172
174
175 Aws::String m_requestId;
176 };
177
178} // namespace Model
179} // namespace mediapackagev2
180} // namespace Aws
GetChannelGroupResult & WithEgressDomain(const char *value)
GetChannelGroupResult & AddTags(const char *key, Aws::String &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
GetChannelGroupResult & WithChannelGroupName(const Aws::String &value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
AWS_MEDIAPACKAGEV2_API GetChannelGroupResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetChannelGroupResult & AddTags(Aws::String &&key, const char *value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
GetChannelGroupResult & WithETag(const char *value)
AWS_MEDIAPACKAGEV2_API GetChannelGroupResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetModifiedAt(const Aws::Utils::DateTime &value)
GetChannelGroupResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
GetChannelGroupResult & WithCreatedAt(Aws::Utils::DateTime &&value)
GetChannelGroupResult & WithDescription(const char *value)
void SetCreatedAt(const Aws::Utils::DateTime &value)
GetChannelGroupResult & WithRequestId(Aws::String &&value)
GetChannelGroupResult & WithDescription(const Aws::String &value)
GetChannelGroupResult & WithArn(const char *value)
GetChannelGroupResult & WithArn(Aws::String &&value)
const Aws::Utils::DateTime & GetModifiedAt() const
GetChannelGroupResult & WithETag(const Aws::String &value)
GetChannelGroupResult & WithChannelGroupName(Aws::String &&value)
const Aws::Utils::DateTime & GetCreatedAt() const
GetChannelGroupResult & WithEgressDomain(const Aws::String &value)
GetChannelGroupResult & WithRequestId(const char *value)
GetChannelGroupResult & WithEgressDomain(Aws::String &&value)
GetChannelGroupResult & AddTags(Aws::String &&key, Aws::String &&value)
GetChannelGroupResult & AddTags(const Aws::String &key, const Aws::String &value)
GetChannelGroupResult & WithModifiedAt(const Aws::Utils::DateTime &value)
GetChannelGroupResult & WithModifiedAt(Aws::Utils::DateTime &&value)
GetChannelGroupResult & WithETag(Aws::String &&value)
GetChannelGroupResult & WithChannelGroupName(const char *value)
GetChannelGroupResult & AddTags(const char *key, const char *value)
GetChannelGroupResult & WithRequestId(const Aws::String &value)
GetChannelGroupResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
GetChannelGroupResult & WithCreatedAt(const Aws::Utils::DateTime &value)
GetChannelGroupResult & AddTags(const Aws::String &key, Aws::String &&value)
GetChannelGroupResult & AddTags(Aws::String &&key, const Aws::String &value)
GetChannelGroupResult & WithDescription(Aws::String &&value)
GetChannelGroupResult & WithArn(const 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