AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListInputRoutingsRequest.h
1
6#pragma once
7#include <aws/iotevents/IoTEvents_EXPORTS.h>
8#include <aws/iotevents/IoTEventsRequest.h>
9#include <aws/iotevents/model/InputIdentifier.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoTEvents
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IOTEVENTS_API ListInputRoutingsRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListInputRoutings"; }
32
33 AWS_IOTEVENTS_API Aws::String SerializePayload() const override;
34
35
37
40 inline const InputIdentifier& GetInputIdentifier() const { return m_inputIdentifier; }
41 inline bool InputIdentifierHasBeenSet() const { return m_inputIdentifierHasBeenSet; }
42 template<typename InputIdentifierT = InputIdentifier>
43 void SetInputIdentifier(InputIdentifierT&& value) { m_inputIdentifierHasBeenSet = true; m_inputIdentifier = std::forward<InputIdentifierT>(value); }
44 template<typename InputIdentifierT = InputIdentifier>
45 ListInputRoutingsRequest& WithInputIdentifier(InputIdentifierT&& value) { SetInputIdentifier(std::forward<InputIdentifierT>(value)); return *this;}
47
49
52 inline int GetMaxResults() const { return m_maxResults; }
53 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
54 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
55 inline ListInputRoutingsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
57
59
62 inline const Aws::String& GetNextToken() const { return m_nextToken; }
63 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
64 template<typename NextTokenT = Aws::String>
65 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
66 template<typename NextTokenT = Aws::String>
67 ListInputRoutingsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
69 private:
70
71 InputIdentifier m_inputIdentifier;
72 bool m_inputIdentifierHasBeenSet = false;
73
74 int m_maxResults{0};
75 bool m_maxResultsHasBeenSet = false;
76
77 Aws::String m_nextToken;
78 bool m_nextTokenHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace IoTEvents
83} // namespace Aws
ListInputRoutingsRequest & WithNextToken(NextTokenT &&value)
AWS_IOTEVENTS_API Aws::String SerializePayload() const override
ListInputRoutingsRequest & WithMaxResults(int value)
ListInputRoutingsRequest & WithInputIdentifier(InputIdentifierT &&value)
virtual const char * GetServiceRequestName() const override
AWS_IOTEVENTS_API ListInputRoutingsRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String