1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
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 <utility>
11 
12 namespace Aws
13 {
14 namespace EC2
15 {
16 namespace Model
17 {
18 
19   /**
20    */
21   class AWS_EC2_API DeleteTransitGatewayRouteTableRequest : public EC2Request
22   {
23   public:
24     DeleteTransitGatewayRouteTableRequest();
25 
26     // Service request name is the Operation name which will send this request out,
27     // each operation should has unique request name, so that we can get operation's name from this request.
28     // Note: this is not true for response, multiple operations may have the same response name,
29     // so we can not get operation's name from response.
GetServiceRequestName()30     inline virtual const char* GetServiceRequestName() const override { return "DeleteTransitGatewayRouteTable"; }
31 
32     Aws::String SerializePayload() const override;
33 
34   protected:
35     void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
36 
37   public:
38 
39     /**
40      * <p>The ID of the transit gateway route table.</p>
41      */
GetTransitGatewayRouteTableId()42     inline const Aws::String& GetTransitGatewayRouteTableId() const{ return m_transitGatewayRouteTableId; }
43 
44     /**
45      * <p>The ID of the transit gateway route table.</p>
46      */
TransitGatewayRouteTableIdHasBeenSet()47     inline bool TransitGatewayRouteTableIdHasBeenSet() const { return m_transitGatewayRouteTableIdHasBeenSet; }
48 
49     /**
50      * <p>The ID of the transit gateway route table.</p>
51      */
SetTransitGatewayRouteTableId(const Aws::String & value)52     inline void SetTransitGatewayRouteTableId(const Aws::String& value) { m_transitGatewayRouteTableIdHasBeenSet = true; m_transitGatewayRouteTableId = value; }
53 
54     /**
55      * <p>The ID of the transit gateway route table.</p>
56      */
SetTransitGatewayRouteTableId(Aws::String && value)57     inline void SetTransitGatewayRouteTableId(Aws::String&& value) { m_transitGatewayRouteTableIdHasBeenSet = true; m_transitGatewayRouteTableId = std::move(value); }
58 
59     /**
60      * <p>The ID of the transit gateway route table.</p>
61      */
SetTransitGatewayRouteTableId(const char * value)62     inline void SetTransitGatewayRouteTableId(const char* value) { m_transitGatewayRouteTableIdHasBeenSet = true; m_transitGatewayRouteTableId.assign(value); }
63 
64     /**
65      * <p>The ID of the transit gateway route table.</p>
66      */
WithTransitGatewayRouteTableId(const Aws::String & value)67     inline DeleteTransitGatewayRouteTableRequest& WithTransitGatewayRouteTableId(const Aws::String& value) { SetTransitGatewayRouteTableId(value); return *this;}
68 
69     /**
70      * <p>The ID of the transit gateway route table.</p>
71      */
WithTransitGatewayRouteTableId(Aws::String && value)72     inline DeleteTransitGatewayRouteTableRequest& WithTransitGatewayRouteTableId(Aws::String&& value) { SetTransitGatewayRouteTableId(std::move(value)); return *this;}
73 
74     /**
75      * <p>The ID of the transit gateway route table.</p>
76      */
WithTransitGatewayRouteTableId(const char * value)77     inline DeleteTransitGatewayRouteTableRequest& WithTransitGatewayRouteTableId(const char* value) { SetTransitGatewayRouteTableId(value); return *this;}
78 
79 
80     /**
81      * <p>Checks whether you have the required permissions for the action, without
82      * actually making the request, and provides an error response. If you have the
83      * required permissions, the error response is <code>DryRunOperation</code>.
84      * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
85      */
GetDryRun()86     inline bool GetDryRun() const{ return m_dryRun; }
87 
88     /**
89      * <p>Checks whether you have the required permissions for the action, without
90      * actually making the request, and provides an error response. If you have the
91      * required permissions, the error response is <code>DryRunOperation</code>.
92      * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
93      */
DryRunHasBeenSet()94     inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
95 
96     /**
97      * <p>Checks whether you have the required permissions for the action, without
98      * actually making the request, and provides an error response. If you have the
99      * required permissions, the error response is <code>DryRunOperation</code>.
100      * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
101      */
SetDryRun(bool value)102     inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
103 
104     /**
105      * <p>Checks whether you have the required permissions for the action, without
106      * actually making the request, and provides an error response. If you have the
107      * required permissions, the error response is <code>DryRunOperation</code>.
108      * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
109      */
WithDryRun(bool value)110     inline DeleteTransitGatewayRouteTableRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
111 
112   private:
113 
114     Aws::String m_transitGatewayRouteTableId;
115     bool m_transitGatewayRouteTableIdHasBeenSet;
116 
117     bool m_dryRun;
118     bool m_dryRunHasBeenSet;
119   };
120 
121 } // namespace Model
122 } // namespace EC2
123 } // namespace Aws
124