AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateTransitGatewayPolicyTableRequest.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/core/utils/memory/stl/AWSVector.h>
11#include <aws/ec2/model/TagSpecification.h>
12#include <utility>
13
14namespace Aws
15{
16namespace EC2
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "CreateTransitGatewayPolicyTable"; }
33
34 AWS_EC2_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
45 inline const Aws::String& GetTransitGatewayId() const { return m_transitGatewayId; }
46 inline bool TransitGatewayIdHasBeenSet() const { return m_transitGatewayIdHasBeenSet; }
47 template<typename TransitGatewayIdT = Aws::String>
48 void SetTransitGatewayId(TransitGatewayIdT&& value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId = std::forward<TransitGatewayIdT>(value); }
49 template<typename TransitGatewayIdT = Aws::String>
50 CreateTransitGatewayPolicyTableRequest& WithTransitGatewayId(TransitGatewayIdT&& value) { SetTransitGatewayId(std::forward<TransitGatewayIdT>(value)); return *this;}
52
54
58 inline const Aws::Vector<TagSpecification>& GetTagSpecifications() const { return m_tagSpecifications; }
59 inline bool TagSpecificationsHasBeenSet() const { return m_tagSpecificationsHasBeenSet; }
60 template<typename TagSpecificationsT = Aws::Vector<TagSpecification>>
61 void SetTagSpecifications(TagSpecificationsT&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = std::forward<TagSpecificationsT>(value); }
62 template<typename TagSpecificationsT = Aws::Vector<TagSpecification>>
63 CreateTransitGatewayPolicyTableRequest& WithTagSpecifications(TagSpecificationsT&& value) { SetTagSpecifications(std::forward<TagSpecificationsT>(value)); return *this;}
64 template<typename TagSpecificationsT = TagSpecification>
65 CreateTransitGatewayPolicyTableRequest& AddTagSpecifications(TagSpecificationsT&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.emplace_back(std::forward<TagSpecificationsT>(value)); return *this; }
67
69
75 inline bool GetDryRun() const { return m_dryRun; }
76 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
77 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
78 inline CreateTransitGatewayPolicyTableRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
80 private:
81
82 Aws::String m_transitGatewayId;
83 bool m_transitGatewayIdHasBeenSet = false;
84
85 Aws::Vector<TagSpecification> m_tagSpecifications;
86 bool m_tagSpecificationsHasBeenSet = false;
87
88 bool m_dryRun{false};
89 bool m_dryRunHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace EC2
94} // namespace Aws
CreateTransitGatewayPolicyTableRequest & AddTagSpecifications(TagSpecificationsT &&value)
CreateTransitGatewayPolicyTableRequest & WithDryRun(bool value)
AWS_EC2_API Aws::String SerializePayload() const override
CreateTransitGatewayPolicyTableRequest & WithTagSpecifications(TagSpecificationsT &&value)
CreateTransitGatewayPolicyTableRequest & WithTransitGatewayId(TransitGatewayIdT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector