AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ModifyVpcTenancyRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/ec2/model/VpcTenancy.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_EC2_API ModifyVpcTenancyRequest() = 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 "ModifyVpcTenancy"; }
32
33 AWS_EC2_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
41
44 inline const Aws::String& GetVpcId() const { return m_vpcId; }
45 inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
46 template<typename VpcIdT = Aws::String>
47 void SetVpcId(VpcIdT&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::forward<VpcIdT>(value); }
48 template<typename VpcIdT = Aws::String>
49 ModifyVpcTenancyRequest& WithVpcId(VpcIdT&& value) { SetVpcId(std::forward<VpcIdT>(value)); return *this;}
51
53
56 inline VpcTenancy GetInstanceTenancy() const { return m_instanceTenancy; }
57 inline bool InstanceTenancyHasBeenSet() const { return m_instanceTenancyHasBeenSet; }
58 inline void SetInstanceTenancy(VpcTenancy value) { m_instanceTenancyHasBeenSet = true; m_instanceTenancy = value; }
61
63
69 inline bool GetDryRun() const { return m_dryRun; }
70 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
71 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
72 inline ModifyVpcTenancyRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
74 private:
75
76 Aws::String m_vpcId;
77 bool m_vpcIdHasBeenSet = false;
78
79 VpcTenancy m_instanceTenancy{VpcTenancy::NOT_SET};
80 bool m_instanceTenancyHasBeenSet = false;
81
82 bool m_dryRun{false};
83 bool m_dryRunHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace EC2
88} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ModifyVpcTenancyRequest & WithVpcId(VpcIdT &&value)
AWS_EC2_API Aws::String SerializePayload() const override
ModifyVpcTenancyRequest & WithDryRun(bool value)
AWS_EC2_API ModifyVpcTenancyRequest()=default
virtual const char * GetServiceRequestName() const override
ModifyVpcTenancyRequest & WithInstanceTenancy(VpcTenancy value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String