AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetWorkUnitsRequest.h
1
6#pragma once
7#include <aws/lakeformation/LakeFormation_EXPORTS.h>
8#include <aws/lakeformation/LakeFormationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace LakeFormation
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_LAKEFORMATION_API GetWorkUnitsRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetWorkUnits"; }
31
32 AWS_LAKEFORMATION_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
40 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
41 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
42 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
43 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
44 inline GetWorkUnitsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
45 inline GetWorkUnitsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
46 inline GetWorkUnitsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
48
50
57 inline int GetPageSize() const{ return m_pageSize; }
58 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
59 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
60 inline GetWorkUnitsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
62
64
67 inline const Aws::String& GetQueryId() const{ return m_queryId; }
68 inline bool QueryIdHasBeenSet() const { return m_queryIdHasBeenSet; }
69 inline void SetQueryId(const Aws::String& value) { m_queryIdHasBeenSet = true; m_queryId = value; }
70 inline void SetQueryId(Aws::String&& value) { m_queryIdHasBeenSet = true; m_queryId = std::move(value); }
71 inline void SetQueryId(const char* value) { m_queryIdHasBeenSet = true; m_queryId.assign(value); }
72 inline GetWorkUnitsRequest& WithQueryId(const Aws::String& value) { SetQueryId(value); return *this;}
73 inline GetWorkUnitsRequest& WithQueryId(Aws::String&& value) { SetQueryId(std::move(value)); return *this;}
74 inline GetWorkUnitsRequest& WithQueryId(const char* value) { SetQueryId(value); return *this;}
76 private:
77
78 Aws::String m_nextToken;
79 bool m_nextTokenHasBeenSet = false;
80
81 int m_pageSize;
82 bool m_pageSizeHasBeenSet = false;
83
84 Aws::String m_queryId;
85 bool m_queryIdHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace LakeFormation
90} // namespace Aws
GetWorkUnitsRequest & WithNextToken(const char *value)
GetWorkUnitsRequest & WithNextToken(const Aws::String &value)
GetWorkUnitsRequest & WithQueryId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
GetWorkUnitsRequest & WithQueryId(const char *value)
GetWorkUnitsRequest & WithNextToken(Aws::String &&value)
GetWorkUnitsRequest & WithQueryId(const Aws::String &value)
GetWorkUnitsRequest & WithPageSize(int value)
AWS_LAKEFORMATION_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String