AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartUpdateSignalMapRequest.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/medialive/MediaLiveRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace MediaLive
16{
17namespace Model
18{
19
27 {
28 public:
29 AWS_MEDIALIVE_API StartUpdateSignalMapRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "StartUpdateSignalMap"; }
36
37 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
38
39
41
42 inline const Aws::Vector<Aws::String>& GetCloudWatchAlarmTemplateGroupIdentifiers() const{ return m_cloudWatchAlarmTemplateGroupIdentifiers; }
43 inline bool CloudWatchAlarmTemplateGroupIdentifiersHasBeenSet() const { return m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet; }
44 inline void SetCloudWatchAlarmTemplateGroupIdentifiers(const Aws::Vector<Aws::String>& value) { m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifiers = value; }
45 inline void SetCloudWatchAlarmTemplateGroupIdentifiers(Aws::Vector<Aws::String>&& value) { m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifiers = std::move(value); }
48 inline StartUpdateSignalMapRequest& AddCloudWatchAlarmTemplateGroupIdentifiers(const Aws::String& value) { m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifiers.push_back(value); return *this; }
49 inline StartUpdateSignalMapRequest& AddCloudWatchAlarmTemplateGroupIdentifiers(Aws::String&& value) { m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifiers.push_back(std::move(value)); return *this; }
50 inline StartUpdateSignalMapRequest& AddCloudWatchAlarmTemplateGroupIdentifiers(const char* value) { m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifiers.push_back(value); return *this; }
52
54
57 inline const Aws::String& GetDescription() const{ return m_description; }
58 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
59 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
60 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
61 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
62 inline StartUpdateSignalMapRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
63 inline StartUpdateSignalMapRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
64 inline StartUpdateSignalMapRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
66
68
71 inline const Aws::String& GetDiscoveryEntryPointArn() const{ return m_discoveryEntryPointArn; }
72 inline bool DiscoveryEntryPointArnHasBeenSet() const { return m_discoveryEntryPointArnHasBeenSet; }
73 inline void SetDiscoveryEntryPointArn(const Aws::String& value) { m_discoveryEntryPointArnHasBeenSet = true; m_discoveryEntryPointArn = value; }
74 inline void SetDiscoveryEntryPointArn(Aws::String&& value) { m_discoveryEntryPointArnHasBeenSet = true; m_discoveryEntryPointArn = std::move(value); }
75 inline void SetDiscoveryEntryPointArn(const char* value) { m_discoveryEntryPointArnHasBeenSet = true; m_discoveryEntryPointArn.assign(value); }
78 inline StartUpdateSignalMapRequest& WithDiscoveryEntryPointArn(const char* value) { SetDiscoveryEntryPointArn(value); return *this;}
80
82
83 inline const Aws::Vector<Aws::String>& GetEventBridgeRuleTemplateGroupIdentifiers() const{ return m_eventBridgeRuleTemplateGroupIdentifiers; }
84 inline bool EventBridgeRuleTemplateGroupIdentifiersHasBeenSet() const { return m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet; }
85 inline void SetEventBridgeRuleTemplateGroupIdentifiers(const Aws::Vector<Aws::String>& value) { m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifiers = value; }
86 inline void SetEventBridgeRuleTemplateGroupIdentifiers(Aws::Vector<Aws::String>&& value) { m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifiers = std::move(value); }
89 inline StartUpdateSignalMapRequest& AddEventBridgeRuleTemplateGroupIdentifiers(const Aws::String& value) { m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifiers.push_back(value); return *this; }
90 inline StartUpdateSignalMapRequest& AddEventBridgeRuleTemplateGroupIdentifiers(Aws::String&& value) { m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifiers.push_back(std::move(value)); return *this; }
91 inline StartUpdateSignalMapRequest& AddEventBridgeRuleTemplateGroupIdentifiers(const char* value) { m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifiers.push_back(value); return *this; }
93
95
99 inline bool GetForceRediscovery() const{ return m_forceRediscovery; }
100 inline bool ForceRediscoveryHasBeenSet() const { return m_forceRediscoveryHasBeenSet; }
101 inline void SetForceRediscovery(bool value) { m_forceRediscoveryHasBeenSet = true; m_forceRediscovery = value; }
102 inline StartUpdateSignalMapRequest& WithForceRediscovery(bool value) { SetForceRediscovery(value); return *this;}
104
106
109 inline const Aws::String& GetIdentifier() const{ return m_identifier; }
110 inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
111 inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; }
112 inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); }
113 inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); }
114 inline StartUpdateSignalMapRequest& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;}
115 inline StartUpdateSignalMapRequest& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;}
116 inline StartUpdateSignalMapRequest& WithIdentifier(const char* value) { SetIdentifier(value); return *this;}
118
120
124 inline const Aws::String& GetName() const{ return m_name; }
125 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
126 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
127 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
128 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
129 inline StartUpdateSignalMapRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
130 inline StartUpdateSignalMapRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
131 inline StartUpdateSignalMapRequest& WithName(const char* value) { SetName(value); return *this;}
133 private:
134
135 Aws::Vector<Aws::String> m_cloudWatchAlarmTemplateGroupIdentifiers;
136 bool m_cloudWatchAlarmTemplateGroupIdentifiersHasBeenSet = false;
137
138 Aws::String m_description;
139 bool m_descriptionHasBeenSet = false;
140
141 Aws::String m_discoveryEntryPointArn;
142 bool m_discoveryEntryPointArnHasBeenSet = false;
143
144 Aws::Vector<Aws::String> m_eventBridgeRuleTemplateGroupIdentifiers;
145 bool m_eventBridgeRuleTemplateGroupIdentifiersHasBeenSet = false;
146
147 bool m_forceRediscovery;
148 bool m_forceRediscoveryHasBeenSet = false;
149
150 Aws::String m_identifier;
151 bool m_identifierHasBeenSet = false;
152
153 Aws::String m_name;
154 bool m_nameHasBeenSet = false;
155 };
156
157} // namespace Model
158} // namespace MediaLive
159} // namespace Aws
virtual const char * GetServiceRequestName() const override
StartUpdateSignalMapRequest & AddCloudWatchAlarmTemplateGroupIdentifiers(const Aws::String &value)
StartUpdateSignalMapRequest & AddCloudWatchAlarmTemplateGroupIdentifiers(const char *value)
StartUpdateSignalMapRequest & WithIdentifier(Aws::String &&value)
StartUpdateSignalMapRequest & WithCloudWatchAlarmTemplateGroupIdentifiers(const Aws::Vector< Aws::String > &value)
StartUpdateSignalMapRequest & WithDescription(const Aws::String &value)
const Aws::Vector< Aws::String > & GetEventBridgeRuleTemplateGroupIdentifiers() const
StartUpdateSignalMapRequest & WithCloudWatchAlarmTemplateGroupIdentifiers(Aws::Vector< Aws::String > &&value)
StartUpdateSignalMapRequest & AddCloudWatchAlarmTemplateGroupIdentifiers(Aws::String &&value)
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
StartUpdateSignalMapRequest & WithDescription(Aws::String &&value)
StartUpdateSignalMapRequest & WithName(Aws::String &&value)
void SetEventBridgeRuleTemplateGroupIdentifiers(Aws::Vector< Aws::String > &&value)
void SetCloudWatchAlarmTemplateGroupIdentifiers(const Aws::Vector< Aws::String > &value)
StartUpdateSignalMapRequest & AddEventBridgeRuleTemplateGroupIdentifiers(const char *value)
StartUpdateSignalMapRequest & WithEventBridgeRuleTemplateGroupIdentifiers(const Aws::Vector< Aws::String > &value)
StartUpdateSignalMapRequest & WithDescription(const char *value)
StartUpdateSignalMapRequest & WithIdentifier(const Aws::String &value)
const Aws::Vector< Aws::String > & GetCloudWatchAlarmTemplateGroupIdentifiers() const
StartUpdateSignalMapRequest & WithForceRediscovery(bool value)
void SetEventBridgeRuleTemplateGroupIdentifiers(const Aws::Vector< Aws::String > &value)
StartUpdateSignalMapRequest & WithName(const Aws::String &value)
StartUpdateSignalMapRequest & WithEventBridgeRuleTemplateGroupIdentifiers(Aws::Vector< Aws::String > &&value)
StartUpdateSignalMapRequest & AddEventBridgeRuleTemplateGroupIdentifiers(Aws::String &&value)
StartUpdateSignalMapRequest & AddEventBridgeRuleTemplateGroupIdentifiers(const Aws::String &value)
StartUpdateSignalMapRequest & WithDiscoveryEntryPointArn(const Aws::String &value)
StartUpdateSignalMapRequest & WithName(const char *value)
StartUpdateSignalMapRequest & WithDiscoveryEntryPointArn(Aws::String &&value)
StartUpdateSignalMapRequest & WithDiscoveryEntryPointArn(const char *value)
void SetCloudWatchAlarmTemplateGroupIdentifiers(Aws::Vector< Aws::String > &&value)
StartUpdateSignalMapRequest & WithIdentifier(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector