AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
GetDomainNameAccessAssociationsRequest.h
1
6#pragma once
7#include <aws/apigateway/APIGateway_EXPORTS.h>
8#include <aws/apigateway/APIGatewayRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/apigateway/model/ResourceOwner.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace APIGateway
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_APIGATEWAY_API GetDomainNameAccessAssociationsRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetDomainNameAccessAssociations"; }
36
37 AWS_APIGATEWAY_API Aws::String SerializePayload() const override;
38
39 AWS_APIGATEWAY_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetPosition() const { return m_position; }
47 inline bool PositionHasBeenSet() const { return m_positionHasBeenSet; }
48 template<typename PositionT = Aws::String>
49 void SetPosition(PositionT&& value) { m_positionHasBeenSet = true; m_position = std::forward<PositionT>(value); }
50 template<typename PositionT = Aws::String>
51 GetDomainNameAccessAssociationsRequest& WithPosition(PositionT&& value) { SetPosition(std::forward<PositionT>(value)); return *this;}
53
55
59 inline int GetLimit() const { return m_limit; }
60 inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
61 inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
62 inline GetDomainNameAccessAssociationsRequest& WithLimit(int value) { SetLimit(value); return *this;}
64
66
72 inline ResourceOwner GetResourceOwner() const { return m_resourceOwner; }
73 inline bool ResourceOwnerHasBeenSet() const { return m_resourceOwnerHasBeenSet; }
74 inline void SetResourceOwner(ResourceOwner value) { m_resourceOwnerHasBeenSet = true; m_resourceOwner = value; }
77 private:
78
79 Aws::String m_position;
80 bool m_positionHasBeenSet = false;
81
82 int m_limit{0};
83 bool m_limitHasBeenSet = false;
84
86 bool m_resourceOwnerHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace APIGateway
91} // namespace Aws
AWS_APIGATEWAY_API Aws::String SerializePayload() const override
GetDomainNameAccessAssociationsRequest & WithPosition(PositionT &&value)
AWS_APIGATEWAY_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetDomainNameAccessAssociationsRequest & WithResourceOwner(ResourceOwner value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String