AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListSignalMapsRequest.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/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace MediaLive
19{
20namespace Model
21{
22
29 {
30 public:
31 AWS_MEDIALIVE_API ListSignalMapsRequest();
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "ListSignalMaps"; }
38
39 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
40
41 AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42
43
45
49 inline const Aws::String& GetCloudWatchAlarmTemplateGroupIdentifier() const{ return m_cloudWatchAlarmTemplateGroupIdentifier; }
50 inline bool CloudWatchAlarmTemplateGroupIdentifierHasBeenSet() const { return m_cloudWatchAlarmTemplateGroupIdentifierHasBeenSet; }
51 inline void SetCloudWatchAlarmTemplateGroupIdentifier(const Aws::String& value) { m_cloudWatchAlarmTemplateGroupIdentifierHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifier = value; }
52 inline void SetCloudWatchAlarmTemplateGroupIdentifier(Aws::String&& value) { m_cloudWatchAlarmTemplateGroupIdentifierHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifier = std::move(value); }
53 inline void SetCloudWatchAlarmTemplateGroupIdentifier(const char* value) { m_cloudWatchAlarmTemplateGroupIdentifierHasBeenSet = true; m_cloudWatchAlarmTemplateGroupIdentifier.assign(value); }
58
60
64 inline const Aws::String& GetEventBridgeRuleTemplateGroupIdentifier() const{ return m_eventBridgeRuleTemplateGroupIdentifier; }
65 inline bool EventBridgeRuleTemplateGroupIdentifierHasBeenSet() const { return m_eventBridgeRuleTemplateGroupIdentifierHasBeenSet; }
66 inline void SetEventBridgeRuleTemplateGroupIdentifier(const Aws::String& value) { m_eventBridgeRuleTemplateGroupIdentifierHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifier = value; }
67 inline void SetEventBridgeRuleTemplateGroupIdentifier(Aws::String&& value) { m_eventBridgeRuleTemplateGroupIdentifierHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifier = std::move(value); }
68 inline void SetEventBridgeRuleTemplateGroupIdentifier(const char* value) { m_eventBridgeRuleTemplateGroupIdentifierHasBeenSet = true; m_eventBridgeRuleTemplateGroupIdentifier.assign(value); }
73
75
76 inline int GetMaxResults() const{ return m_maxResults; }
77 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
78 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
79 inline ListSignalMapsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
81
83
86 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
87 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
88 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
89 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
90 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
91 inline ListSignalMapsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
92 inline ListSignalMapsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
93 inline ListSignalMapsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
95 private:
96
97 Aws::String m_cloudWatchAlarmTemplateGroupIdentifier;
98 bool m_cloudWatchAlarmTemplateGroupIdentifierHasBeenSet = false;
99
100 Aws::String m_eventBridgeRuleTemplateGroupIdentifier;
101 bool m_eventBridgeRuleTemplateGroupIdentifierHasBeenSet = false;
102
103 int m_maxResults;
104 bool m_maxResultsHasBeenSet = false;
105
106 Aws::String m_nextToken;
107 bool m_nextTokenHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace MediaLive
112} // namespace Aws
ListSignalMapsRequest & WithEventBridgeRuleTemplateGroupIdentifier(const Aws::String &value)
const Aws::String & GetEventBridgeRuleTemplateGroupIdentifier() const
ListSignalMapsRequest & WithNextToken(const Aws::String &value)
AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
ListSignalMapsRequest & WithCloudWatchAlarmTemplateGroupIdentifier(const Aws::String &value)
ListSignalMapsRequest & WithMaxResults(int value)
ListSignalMapsRequest & WithEventBridgeRuleTemplateGroupIdentifier(Aws::String &&value)
ListSignalMapsRequest & WithEventBridgeRuleTemplateGroupIdentifier(const char *value)
void SetCloudWatchAlarmTemplateGroupIdentifier(Aws::String &&value)
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
void SetEventBridgeRuleTemplateGroupIdentifier(Aws::String &&value)
ListSignalMapsRequest & WithCloudWatchAlarmTemplateGroupIdentifier(Aws::String &&value)
ListSignalMapsRequest & WithNextToken(Aws::String &&value)
void SetCloudWatchAlarmTemplateGroupIdentifier(const char *value)
void SetEventBridgeRuleTemplateGroupIdentifier(const char *value)
ListSignalMapsRequest & WithNextToken(const char *value)
void SetEventBridgeRuleTemplateGroupIdentifier(const Aws::String &value)
void SetCloudWatchAlarmTemplateGroupIdentifier(const Aws::String &value)
const Aws::String & GetCloudWatchAlarmTemplateGroupIdentifier() const
ListSignalMapsRequest & WithCloudWatchAlarmTemplateGroupIdentifier(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String