AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListPipelinesRequest.h
1
6#pragma once
7#include <aws/elastictranscoder/ElasticTranscoder_EXPORTS.h>
8#include <aws/elastictranscoder/ElasticTranscoderRequest.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 ElasticTranscoder
19{
20namespace Model
21{
22
29 {
30 public:
31 AWS_ELASTICTRANSCODER_API ListPipelinesRequest() = default;
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 "ListPipelines"; }
38
39 AWS_ELASTICTRANSCODER_API Aws::String SerializePayload() const override;
40
41 AWS_ELASTICTRANSCODER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42
43
45
50 inline const Aws::String& GetAscending() const { return m_ascending; }
51 inline bool AscendingHasBeenSet() const { return m_ascendingHasBeenSet; }
52 template<typename AscendingT = Aws::String>
53 void SetAscending(AscendingT&& value) { m_ascendingHasBeenSet = true; m_ascending = std::forward<AscendingT>(value); }
54 template<typename AscendingT = Aws::String>
55 ListPipelinesRequest& WithAscending(AscendingT&& value) { SetAscending(std::forward<AscendingT>(value)); return *this;}
57
59
64 inline const Aws::String& GetPageToken() const { return m_pageToken; }
65 inline bool PageTokenHasBeenSet() const { return m_pageTokenHasBeenSet; }
66 template<typename PageTokenT = Aws::String>
67 void SetPageToken(PageTokenT&& value) { m_pageTokenHasBeenSet = true; m_pageToken = std::forward<PageTokenT>(value); }
68 template<typename PageTokenT = Aws::String>
69 ListPipelinesRequest& WithPageToken(PageTokenT&& value) { SetPageToken(std::forward<PageTokenT>(value)); return *this;}
71 private:
72
73 Aws::String m_ascending;
74 bool m_ascendingHasBeenSet = false;
75
76 Aws::String m_pageToken;
77 bool m_pageTokenHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace ElasticTranscoder
82} // namespace Aws
AWS_ELASTICTRANSCODER_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_ELASTICTRANSCODER_API ListPipelinesRequest()=default
ListPipelinesRequest & WithPageToken(PageTokenT &&value)
AWS_ELASTICTRANSCODER_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
ListPipelinesRequest & WithAscending(AscendingT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String