AWS SDK for C++

AWS SDK for C++ Version 1.11.609

Loading...
Searching...
No Matches
SignalMapSummary.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/medialive/model/SignalMapMonitorDeploymentStatus.h>
11#include <aws/medialive/model/SignalMapStatus.h>
12#include <aws/core/utils/memory/stl/AWSMap.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22 class JsonView;
23} // namespace Json
24} // namespace Utils
25namespace MediaLive
26{
27namespace Model
28{
29
36 {
37 public:
38 AWS_MEDIALIVE_API SignalMapSummary() = default;
39 AWS_MEDIALIVE_API SignalMapSummary(Aws::Utils::Json::JsonView jsonValue);
41 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetArn() const { return m_arn; }
49 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
50 template<typename ArnT = Aws::String>
51 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
52 template<typename ArnT = Aws::String>
53 SignalMapSummary& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
55
57
58 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
59 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
60 template<typename CreatedAtT = Aws::Utils::DateTime>
61 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
62 template<typename CreatedAtT = Aws::Utils::DateTime>
63 SignalMapSummary& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
65
67
70 inline const Aws::String& GetDescription() const { return m_description; }
71 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
72 template<typename DescriptionT = Aws::String>
73 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
74 template<typename DescriptionT = Aws::String>
75 SignalMapSummary& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
77
79
82 inline const Aws::String& GetId() const { return m_id; }
83 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
84 template<typename IdT = Aws::String>
85 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
86 template<typename IdT = Aws::String>
87 SignalMapSummary& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
89
91
92 inline const Aws::Utils::DateTime& GetModifiedAt() const { return m_modifiedAt; }
93 inline bool ModifiedAtHasBeenSet() const { return m_modifiedAtHasBeenSet; }
94 template<typename ModifiedAtT = Aws::Utils::DateTime>
95 void SetModifiedAt(ModifiedAtT&& value) { m_modifiedAtHasBeenSet = true; m_modifiedAt = std::forward<ModifiedAtT>(value); }
96 template<typename ModifiedAtT = Aws::Utils::DateTime>
97 SignalMapSummary& WithModifiedAt(ModifiedAtT&& value) { SetModifiedAt(std::forward<ModifiedAtT>(value)); return *this;}
99
101
102 inline SignalMapMonitorDeploymentStatus GetMonitorDeploymentStatus() const { return m_monitorDeploymentStatus; }
103 inline bool MonitorDeploymentStatusHasBeenSet() const { return m_monitorDeploymentStatusHasBeenSet; }
104 inline void SetMonitorDeploymentStatus(SignalMapMonitorDeploymentStatus value) { m_monitorDeploymentStatusHasBeenSet = true; m_monitorDeploymentStatus = value; }
107
109
113 inline const Aws::String& GetName() const { return m_name; }
114 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
115 template<typename NameT = Aws::String>
116 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
117 template<typename NameT = Aws::String>
118 SignalMapSummary& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
120
122
123 inline SignalMapStatus GetStatus() const { return m_status; }
124 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
125 inline void SetStatus(SignalMapStatus value) { m_statusHasBeenSet = true; m_status = value; }
126 inline SignalMapSummary& WithStatus(SignalMapStatus value) { SetStatus(value); return *this;}
128
130
131 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const { return m_tags; }
132 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
133 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
134 void SetTags(TagsT&& value) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
135 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
136 SignalMapSummary& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
137 template<typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
138 SignalMapSummary& AddTags(TagsKeyT&& key, TagsValueT&& value) {
139 m_tagsHasBeenSet = true; m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value)); return *this;
140 }
142 private:
143
144 Aws::String m_arn;
145 bool m_arnHasBeenSet = false;
146
147 Aws::Utils::DateTime m_createdAt{};
148 bool m_createdAtHasBeenSet = false;
149
150 Aws::String m_description;
151 bool m_descriptionHasBeenSet = false;
152
153 Aws::String m_id;
154 bool m_idHasBeenSet = false;
155
156 Aws::Utils::DateTime m_modifiedAt{};
157 bool m_modifiedAtHasBeenSet = false;
158
160 bool m_monitorDeploymentStatusHasBeenSet = false;
161
162 Aws::String m_name;
163 bool m_nameHasBeenSet = false;
164
166 bool m_statusHasBeenSet = false;
167
169 bool m_tagsHasBeenSet = false;
170 };
171
172} // namespace Model
173} // namespace MediaLive
174} // namespace Aws
SignalMapSummary & WithId(IdT &&value)
void SetMonitorDeploymentStatus(SignalMapMonitorDeploymentStatus value)
SignalMapSummary & WithStatus(SignalMapStatus value)
SignalMapSummary & AddTags(TagsKeyT &&key, TagsValueT &&value)
void SetDescription(DescriptionT &&value)
const Aws::Utils::DateTime & GetCreatedAt() const
SignalMapSummary & WithName(NameT &&value)
AWS_MEDIALIVE_API SignalMapSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetModifiedAt(ModifiedAtT &&value)
SignalMapMonitorDeploymentStatus GetMonitorDeploymentStatus() const
SignalMapSummary & WithDescription(DescriptionT &&value)
SignalMapSummary & WithMonitorDeploymentStatus(SignalMapMonitorDeploymentStatus value)
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetStatus(SignalMapStatus value)
SignalMapSummary & WithTags(TagsT &&value)
SignalMapSummary & WithArn(ArnT &&value)
SignalMapSummary & WithModifiedAt(ModifiedAtT &&value)
SignalMapSummary & WithCreatedAt(CreatedAtT &&value)
const Aws::String & GetDescription() const
const Aws::Utils::DateTime & GetModifiedAt() const
AWS_MEDIALIVE_API SignalMapSummary(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIALIVE_API SignalMapSummary()=default
const Aws::Map< Aws::String, Aws::String > & GetTags() const
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