AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetHostedZoneLimitRequest.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/Route53Request.h>
9#include <aws/route53/model/HostedZoneLimitType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Route53
16{
17namespace Model
18{
19
27 {
28 public:
29 AWS_ROUTE53_API GetHostedZoneLimitRequest() = 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 "GetHostedZoneLimit"; }
36
37 AWS_ROUTE53_API Aws::String SerializePayload() const override;
38
39
41
48 inline HostedZoneLimitType GetType() const { return m_type; }
49 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
50 inline void SetType(HostedZoneLimitType value) { m_typeHasBeenSet = true; m_type = value; }
51 inline GetHostedZoneLimitRequest& WithType(HostedZoneLimitType value) { SetType(value); return *this;}
53
55
58 inline const Aws::String& GetHostedZoneId() const { return m_hostedZoneId; }
59 inline bool HostedZoneIdHasBeenSet() const { return m_hostedZoneIdHasBeenSet; }
60 template<typename HostedZoneIdT = Aws::String>
61 void SetHostedZoneId(HostedZoneIdT&& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = std::forward<HostedZoneIdT>(value); }
62 template<typename HostedZoneIdT = Aws::String>
63 GetHostedZoneLimitRequest& WithHostedZoneId(HostedZoneIdT&& value) { SetHostedZoneId(std::forward<HostedZoneIdT>(value)); return *this;}
65 private:
66
68 bool m_typeHasBeenSet = false;
69
70 Aws::String m_hostedZoneId;
71 bool m_hostedZoneIdHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace Route53
76} // namespace Aws
AWS_ROUTE53_API GetHostedZoneLimitRequest()=default
GetHostedZoneLimitRequest & WithHostedZoneId(HostedZoneIdT &&value)
GetHostedZoneLimitRequest & WithType(HostedZoneLimitType value)
AWS_ROUTE53_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String