AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
GetAccountLimitRequest.h
1
6#pragma once
7#include <aws/route53/Route53Request.h>
8#include <aws/route53/Route53_EXPORTS.h>
9#include <aws/route53/model/AccountLimitType.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Route53 {
15namespace Model {
16
24 public:
25 AWS_ROUTE53_API GetAccountLimitRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetAccountLimit"; }
32
33 AWS_ROUTE53_API Aws::String SerializePayload() const override;
34
36
51 inline AccountLimitType GetType() const { return m_type; }
52 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
53 inline void SetType(AccountLimitType value) {
54 m_typeHasBeenSet = true;
55 m_type = value;
56 }
58 SetType(value);
59 return *this;
60 }
62 private:
64 bool m_typeHasBeenSet = false;
65};
66
67} // namespace Model
68} // namespace Route53
69} // namespace Aws
virtual const char * GetServiceRequestName() const override
GetAccountLimitRequest & WithType(AccountLimitType value)
AWS_ROUTE53_API GetAccountLimitRequest()=default
AWS_ROUTE53_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String