AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; }
47 inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); }
48 inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); }
49 inline ModifyVpcTenancyRequest& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;}
50 inline ModifyVpcTenancyRequest& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;}
51 inline ModifyVpcTenancyRequest& WithVpcId(const char* value) { SetVpcId(value); return *this;}
53
55
58 inline const VpcTenancy& GetInstanceTenancy() const{ return m_instanceTenancy; }
59 inline bool InstanceTenancyHasBeenSet() const { return m_instanceTenancyHasBeenSet; }
60 inline void SetInstanceTenancy(const VpcTenancy& value) { m_instanceTenancyHasBeenSet = true; m_instanceTenancy = value; }
61 inline void SetInstanceTenancy(VpcTenancy&& value) { m_instanceTenancyHasBeenSet = true; m_instanceTenancy = std::move(value); }
62 inline ModifyVpcTenancyRequest& WithInstanceTenancy(const VpcTenancy& value) { SetInstanceTenancy(value); return *this;}
63 inline ModifyVpcTenancyRequest& WithInstanceTenancy(VpcTenancy&& value) { SetInstanceTenancy(std::move(value)); return *this;}
65
67
73 inline bool GetDryRun() const{ return m_dryRun; }
74 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
75 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
76 inline ModifyVpcTenancyRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
78 private:
79
80 Aws::String m_vpcId;
81 bool m_vpcIdHasBeenSet = false;
82
83 VpcTenancy m_instanceTenancy;
84 bool m_instanceTenancyHasBeenSet = false;
85
86 bool m_dryRun;
87 bool m_dryRunHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace EC2
92} // namespace Aws
ModifyVpcTenancyRequest & WithInstanceTenancy(VpcTenancy &&value)
ModifyVpcTenancyRequest & WithVpcId(const Aws::String &value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ModifyVpcTenancyRequest & WithInstanceTenancy(const VpcTenancy &value)
AWS_EC2_API Aws::String SerializePayload() const override
ModifyVpcTenancyRequest & WithDryRun(bool value)
ModifyVpcTenancyRequest & WithVpcId(const char *value)
ModifyVpcTenancyRequest & WithVpcId(Aws::String &&value)
void SetInstanceTenancy(const VpcTenancy &value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String