AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListQueuesRequest.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
8#include <aws/mediaconvert/MediaConvertRequest.h>
9#include <aws/mediaconvert/model/QueueListBy.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/mediaconvert/model/Order.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace MediaConvert
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_MEDIACONVERT_API ListQueuesRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "ListQueues"; }
37
38 AWS_MEDIACONVERT_API Aws::String SerializePayload() const override;
39
40 AWS_MEDIACONVERT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
41
42
44
49 inline const QueueListBy& GetListBy() const{ return m_listBy; }
50 inline bool ListByHasBeenSet() const { return m_listByHasBeenSet; }
51 inline void SetListBy(const QueueListBy& value) { m_listByHasBeenSet = true; m_listBy = value; }
52 inline void SetListBy(QueueListBy&& value) { m_listByHasBeenSet = true; m_listBy = std::move(value); }
53 inline ListQueuesRequest& WithListBy(const QueueListBy& value) { SetListBy(value); return *this;}
54 inline ListQueuesRequest& WithListBy(QueueListBy&& value) { SetListBy(std::move(value)); return *this;}
56
58
61 inline int GetMaxResults() const{ return m_maxResults; }
62 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
63 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
64 inline ListQueuesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
66
68
72 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
73 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
74 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
75 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
76 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
77 inline ListQueuesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
78 inline ListQueuesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
79 inline ListQueuesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
81
83
87 inline const Order& GetOrder() const{ return m_order; }
88 inline bool OrderHasBeenSet() const { return m_orderHasBeenSet; }
89 inline void SetOrder(const Order& value) { m_orderHasBeenSet = true; m_order = value; }
90 inline void SetOrder(Order&& value) { m_orderHasBeenSet = true; m_order = std::move(value); }
91 inline ListQueuesRequest& WithOrder(const Order& value) { SetOrder(value); return *this;}
92 inline ListQueuesRequest& WithOrder(Order&& value) { SetOrder(std::move(value)); return *this;}
94 private:
95
96 QueueListBy m_listBy;
97 bool m_listByHasBeenSet = false;
98
99 int m_maxResults;
100 bool m_maxResultsHasBeenSet = false;
101
102 Aws::String m_nextToken;
103 bool m_nextTokenHasBeenSet = false;
104
105 Order m_order;
106 bool m_orderHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace MediaConvert
111} // namespace Aws
AWS_MEDIACONVERT_API Aws::String SerializePayload() const override
ListQueuesRequest & WithNextToken(Aws::String &&value)
ListQueuesRequest & WithOrder(Order &&value)
virtual const char * GetServiceRequestName() const override
AWS_MEDIACONVERT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListQueuesRequest & WithOrder(const Order &value)
void SetListBy(const QueueListBy &value)
ListQueuesRequest & WithListBy(QueueListBy &&value)
ListQueuesRequest & WithListBy(const QueueListBy &value)
void SetNextToken(const Aws::String &value)
ListQueuesRequest & WithNextToken(const Aws::String &value)
ListQueuesRequest & WithNextToken(const char *value)
ListQueuesRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String