AWS SDK for C++

AWS SDK for C++ Version 1.11.740

Loading...
Searching...
No Matches
DescribeMappedResourceConfigurationRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/kinesisvideo/KinesisVideoRequest.h>
9#include <aws/kinesisvideo/KinesisVideo_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace KinesisVideo {
15namespace Model {
16
20 public:
21 AWS_KINESISVIDEO_API DescribeMappedResourceConfigurationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeMappedResourceConfiguration"; }
28
29 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetStreamName() const { return m_streamName; }
36 inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; }
37 template <typename StreamNameT = Aws::String>
38 void SetStreamName(StreamNameT&& value) {
39 m_streamNameHasBeenSet = true;
40 m_streamName = std::forward<StreamNameT>(value);
41 }
42 template <typename StreamNameT = Aws::String>
44 SetStreamName(std::forward<StreamNameT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetStreamARN() const { return m_streamARN; }
54 inline bool StreamARNHasBeenSet() const { return m_streamARNHasBeenSet; }
55 template <typename StreamARNT = Aws::String>
56 void SetStreamARN(StreamARNT&& value) {
57 m_streamARNHasBeenSet = true;
58 m_streamARN = std::forward<StreamARNT>(value);
59 }
60 template <typename StreamARNT = Aws::String>
62 SetStreamARN(std::forward<StreamARNT>(value));
63 return *this;
64 }
66
68
71 inline int GetMaxResults() const { return m_maxResults; }
72 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
73 inline void SetMaxResults(int value) {
74 m_maxResultsHasBeenSet = true;
75 m_maxResults = value;
76 }
78 SetMaxResults(value);
79 return *this;
80 }
82
84
88 inline const Aws::String& GetNextToken() const { return m_nextToken; }
89 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
90 template <typename NextTokenT = Aws::String>
91 void SetNextToken(NextTokenT&& value) {
92 m_nextTokenHasBeenSet = true;
93 m_nextToken = std::forward<NextTokenT>(value);
94 }
95 template <typename NextTokenT = Aws::String>
97 SetNextToken(std::forward<NextTokenT>(value));
98 return *this;
99 }
101 private:
102 Aws::String m_streamName;
103
104 Aws::String m_streamARN;
105
106 int m_maxResults{0};
107
108 Aws::String m_nextToken;
109 bool m_streamNameHasBeenSet = false;
110 bool m_streamARNHasBeenSet = false;
111 bool m_maxResultsHasBeenSet = false;
112 bool m_nextTokenHasBeenSet = false;
113};
114
115} // namespace Model
116} // namespace KinesisVideo
117} // namespace Aws
DescribeMappedResourceConfigurationRequest & WithNextToken(NextTokenT &&value)
DescribeMappedResourceConfigurationRequest & WithStreamName(StreamNameT &&value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
DescribeMappedResourceConfigurationRequest & WithStreamARN(StreamARNT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String