AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
DescribeScheduleRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/medialive/MediaLiveRequest.h>
9#include <aws/medialive/MediaLive_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace MediaLive {
18namespace Model {
19
26 public:
27 AWS_MEDIALIVE_API DescribeScheduleRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DescribeSchedule"; }
34
35 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
36
37 AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
38
40
43 inline const Aws::String& GetChannelId() const { return m_channelId; }
44 inline bool ChannelIdHasBeenSet() const { return m_channelIdHasBeenSet; }
45 template <typename ChannelIdT = Aws::String>
46 void SetChannelId(ChannelIdT&& value) {
47 m_channelIdHasBeenSet = true;
48 m_channelId = std::forward<ChannelIdT>(value);
49 }
50 template <typename ChannelIdT = Aws::String>
52 SetChannelId(std::forward<ChannelIdT>(value));
53 return *this;
54 }
56
58
59 inline int GetMaxResults() const { return m_maxResults; }
60 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
61 inline void SetMaxResults(int value) {
62 m_maxResultsHasBeenSet = true;
63 m_maxResults = value;
64 }
66 SetMaxResults(value);
67 return *this;
68 }
70
72
73 inline const Aws::String& GetNextToken() const { return m_nextToken; }
74 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
75 template <typename NextTokenT = Aws::String>
76 void SetNextToken(NextTokenT&& value) {
77 m_nextTokenHasBeenSet = true;
78 m_nextToken = std::forward<NextTokenT>(value);
79 }
80 template <typename NextTokenT = Aws::String>
82 SetNextToken(std::forward<NextTokenT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_channelId;
88
89 int m_maxResults{0};
90
91 Aws::String m_nextToken;
92 bool m_channelIdHasBeenSet = false;
93 bool m_maxResultsHasBeenSet = false;
94 bool m_nextTokenHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace MediaLive
99} // namespace Aws
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
DescribeScheduleRequest & WithNextToken(NextTokenT &&value)
virtual const char * GetServiceRequestName() const override
DescribeScheduleRequest & WithChannelId(ChannelIdT &&value)
AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_MEDIALIVE_API DescribeScheduleRequest()=default
DescribeScheduleRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String