AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ChannelListConfiguration.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/mediapackagev2/model/InputType.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 mediapackagev2
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_MEDIAPACKAGEV2_API ChannelListConfiguration();
37 AWS_MEDIAPACKAGEV2_API ChannelListConfiguration(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetArn() const{ return m_arn; }
47 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
48 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
49 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
50 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
51 inline ChannelListConfiguration& WithArn(const Aws::String& value) { SetArn(value); return *this;}
52 inline ChannelListConfiguration& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
53 inline ChannelListConfiguration& WithArn(const char* value) { SetArn(value); return *this;}
55
57
62 inline const Aws::String& GetChannelName() const{ return m_channelName; }
63 inline bool ChannelNameHasBeenSet() const { return m_channelNameHasBeenSet; }
64 inline void SetChannelName(const Aws::String& value) { m_channelNameHasBeenSet = true; m_channelName = value; }
65 inline void SetChannelName(Aws::String&& value) { m_channelNameHasBeenSet = true; m_channelName = std::move(value); }
66 inline void SetChannelName(const char* value) { m_channelNameHasBeenSet = true; m_channelName.assign(value); }
67 inline ChannelListConfiguration& WithChannelName(const Aws::String& value) { SetChannelName(value); return *this;}
68 inline ChannelListConfiguration& WithChannelName(Aws::String&& value) { SetChannelName(std::move(value)); return *this;}
69 inline ChannelListConfiguration& WithChannelName(const char* value) { SetChannelName(value); return *this;}
71
73
78 inline const Aws::String& GetChannelGroupName() const{ return m_channelGroupName; }
79 inline bool ChannelGroupNameHasBeenSet() const { return m_channelGroupNameHasBeenSet; }
80 inline void SetChannelGroupName(const Aws::String& value) { m_channelGroupNameHasBeenSet = true; m_channelGroupName = value; }
81 inline void SetChannelGroupName(Aws::String&& value) { m_channelGroupNameHasBeenSet = true; m_channelGroupName = std::move(value); }
82 inline void SetChannelGroupName(const char* value) { m_channelGroupNameHasBeenSet = true; m_channelGroupName.assign(value); }
84 inline ChannelListConfiguration& WithChannelGroupName(Aws::String&& value) { SetChannelGroupName(std::move(value)); return *this;}
85 inline ChannelListConfiguration& WithChannelGroupName(const char* value) { SetChannelGroupName(value); return *this;}
87
89
92 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
93 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
94 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
95 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
96 inline ChannelListConfiguration& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
97 inline ChannelListConfiguration& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
99
101
104 inline const Aws::Utils::DateTime& GetModifiedAt() const{ return m_modifiedAt; }
105 inline bool ModifiedAtHasBeenSet() const { return m_modifiedAtHasBeenSet; }
106 inline void SetModifiedAt(const Aws::Utils::DateTime& value) { m_modifiedAtHasBeenSet = true; m_modifiedAt = value; }
107 inline void SetModifiedAt(Aws::Utils::DateTime&& value) { m_modifiedAtHasBeenSet = true; m_modifiedAt = std::move(value); }
108 inline ChannelListConfiguration& WithModifiedAt(const Aws::Utils::DateTime& value) { SetModifiedAt(value); return *this;}
109 inline ChannelListConfiguration& WithModifiedAt(Aws::Utils::DateTime&& value) { SetModifiedAt(std::move(value)); return *this;}
111
113
117 inline const Aws::String& GetDescription() const{ return m_description; }
118 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
119 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
120 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
121 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
122 inline ChannelListConfiguration& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
123 inline ChannelListConfiguration& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
124 inline ChannelListConfiguration& WithDescription(const char* value) { SetDescription(value); return *this;}
126
128
137 inline const InputType& GetInputType() const{ return m_inputType; }
138 inline bool InputTypeHasBeenSet() const { return m_inputTypeHasBeenSet; }
139 inline void SetInputType(const InputType& value) { m_inputTypeHasBeenSet = true; m_inputType = value; }
140 inline void SetInputType(InputType&& value) { m_inputTypeHasBeenSet = true; m_inputType = std::move(value); }
141 inline ChannelListConfiguration& WithInputType(const InputType& value) { SetInputType(value); return *this;}
142 inline ChannelListConfiguration& WithInputType(InputType&& value) { SetInputType(std::move(value)); return *this;}
144 private:
145
146 Aws::String m_arn;
147 bool m_arnHasBeenSet = false;
148
149 Aws::String m_channelName;
150 bool m_channelNameHasBeenSet = false;
151
152 Aws::String m_channelGroupName;
153 bool m_channelGroupNameHasBeenSet = false;
154
155 Aws::Utils::DateTime m_createdAt;
156 bool m_createdAtHasBeenSet = false;
157
158 Aws::Utils::DateTime m_modifiedAt;
159 bool m_modifiedAtHasBeenSet = false;
160
161 Aws::String m_description;
162 bool m_descriptionHasBeenSet = false;
163
164 InputType m_inputType;
165 bool m_inputTypeHasBeenSet = false;
166 };
167
168} // namespace Model
169} // namespace mediapackagev2
170} // namespace Aws
ChannelListConfiguration & WithChannelGroupName(Aws::String &&value)
AWS_MEDIAPACKAGEV2_API Aws::Utils::Json::JsonValue Jsonize() const
ChannelListConfiguration & WithModifiedAt(const Aws::Utils::DateTime &value)
AWS_MEDIAPACKAGEV2_API ChannelListConfiguration(Aws::Utils::Json::JsonView jsonValue)
ChannelListConfiguration & WithCreatedAt(Aws::Utils::DateTime &&value)
AWS_MEDIAPACKAGEV2_API ChannelListConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
ChannelListConfiguration & WithCreatedAt(const Aws::Utils::DateTime &value)
ChannelListConfiguration & WithDescription(const Aws::String &value)
ChannelListConfiguration & WithArn(const Aws::String &value)
ChannelListConfiguration & WithInputType(InputType &&value)
ChannelListConfiguration & WithArn(Aws::String &&value)
ChannelListConfiguration & WithInputType(const InputType &value)
ChannelListConfiguration & WithDescription(Aws::String &&value)
ChannelListConfiguration & WithArn(const char *value)
ChannelListConfiguration & WithChannelName(const Aws::String &value)
ChannelListConfiguration & WithChannelName(const char *value)
ChannelListConfiguration & WithChannelGroupName(const Aws::String &value)
ChannelListConfiguration & WithChannelGroupName(const char *value)
ChannelListConfiguration & WithDescription(const char *value)
ChannelListConfiguration & WithChannelName(Aws::String &&value)
ChannelListConfiguration & WithModifiedAt(Aws::Utils::DateTime &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue