AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeThumbnailsRequest.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
30 {
31 public:
32 AWS_MEDIALIVE_API DescribeThumbnailsRequest() = default;
33
34 // Service request name is the Operation name which will send this request out,
35 // each operation should has unique request name, so that we can get operation's name from this request.
36 // Note: this is not true for response, multiple operations may have the same response name,
37 // so we can not get operation's name from response.
38 inline virtual const char* GetServiceRequestName() const override { return "DescribeThumbnails"; }
39
40 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
41
42 AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
43
44
46
49 inline const Aws::String& GetChannelId() const { return m_channelId; }
50 inline bool ChannelIdHasBeenSet() const { return m_channelIdHasBeenSet; }
51 template<typename ChannelIdT = Aws::String>
52 void SetChannelId(ChannelIdT&& value) { m_channelIdHasBeenSet = true; m_channelId = std::forward<ChannelIdT>(value); }
53 template<typename ChannelIdT = Aws::String>
54 DescribeThumbnailsRequest& WithChannelId(ChannelIdT&& value) { SetChannelId(std::forward<ChannelIdT>(value)); return *this;}
56
58
61 inline const Aws::String& GetPipelineId() const { return m_pipelineId; }
62 inline bool PipelineIdHasBeenSet() const { return m_pipelineIdHasBeenSet; }
63 template<typename PipelineIdT = Aws::String>
64 void SetPipelineId(PipelineIdT&& value) { m_pipelineIdHasBeenSet = true; m_pipelineId = std::forward<PipelineIdT>(value); }
65 template<typename PipelineIdT = Aws::String>
66 DescribeThumbnailsRequest& WithPipelineId(PipelineIdT&& value) { SetPipelineId(std::forward<PipelineIdT>(value)); return *this;}
68
70
73 inline const Aws::String& GetThumbnailType() const { return m_thumbnailType; }
74 inline bool ThumbnailTypeHasBeenSet() const { return m_thumbnailTypeHasBeenSet; }
75 template<typename ThumbnailTypeT = Aws::String>
76 void SetThumbnailType(ThumbnailTypeT&& value) { m_thumbnailTypeHasBeenSet = true; m_thumbnailType = std::forward<ThumbnailTypeT>(value); }
77 template<typename ThumbnailTypeT = Aws::String>
78 DescribeThumbnailsRequest& WithThumbnailType(ThumbnailTypeT&& value) { SetThumbnailType(std::forward<ThumbnailTypeT>(value)); return *this;}
80 private:
81
82 Aws::String m_channelId;
83 bool m_channelIdHasBeenSet = false;
84
85 Aws::String m_pipelineId;
86 bool m_pipelineIdHasBeenSet = false;
87
88 Aws::String m_thumbnailType;
89 bool m_thumbnailTypeHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace MediaLive
94} // namespace Aws
DescribeThumbnailsRequest & WithChannelId(ChannelIdT &&value)
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
DescribeThumbnailsRequest & WithThumbnailType(ThumbnailTypeT &&value)
AWS_MEDIALIVE_API DescribeThumbnailsRequest()=default
DescribeThumbnailsRequest & WithPipelineId(PipelineIdT &&value)
AWS_MEDIALIVE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String