AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
GetVpcLinksRequest.h
1
6#pragma once
7#include <aws/apigateway/APIGatewayRequest.h>
8#include <aws/apigateway/APIGateway_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace APIGateway {
18namespace Model {
19
27 public:
28 AWS_APIGATEWAY_API GetVpcLinksRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetVpcLinks"; }
35
36 AWS_APIGATEWAY_API Aws::String SerializePayload() const override;
37
38 AWS_APIGATEWAY_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
41
44 inline const Aws::String& GetPosition() const { return m_position; }
45 inline bool PositionHasBeenSet() const { return m_positionHasBeenSet; }
46 template <typename PositionT = Aws::String>
47 void SetPosition(PositionT&& value) {
48 m_positionHasBeenSet = true;
49 m_position = std::forward<PositionT>(value);
50 }
51 template <typename PositionT = Aws::String>
52 GetVpcLinksRequest& WithPosition(PositionT&& value) {
53 SetPosition(std::forward<PositionT>(value));
54 return *this;
55 }
57
59
63 inline int GetLimit() const { return m_limit; }
64 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
65 inline void SetLimit(int value) {
66 m_limitHasBeenSet = true;
67 m_limit = value;
68 }
69 inline GetVpcLinksRequest& WithLimit(int value) {
70 SetLimit(value);
71 return *this;
72 }
74 private:
75 Aws::String m_position;
76
77 int m_limit{0};
78 bool m_positionHasBeenSet = false;
79 bool m_limitHasBeenSet = false;
80};
81
82} // namespace Model
83} // namespace APIGateway
84} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String