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 DeleteTransitGatewayVpcAttachmentRequest : public EC2Request
22   {
23   public:
24     DeleteTransitGatewayVpcAttachmentRequest();
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 "DeleteTransitGatewayVpcAttachment"; }
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 attachment.</p>
41      */
GetTransitGatewayAttachmentId()42     inline const Aws::String& GetTransitGatewayAttachmentId() const{ return m_transitGatewayAttachmentId; }
43 
44     /**
45      * <p>The ID of the attachment.</p>
46      */
TransitGatewayAttachmentIdHasBeenSet()47     inline bool TransitGatewayAttachmentIdHasBeenSet() const { return m_transitGatewayAttachmentIdHasBeenSet; }
48 
49     /**
50      * <p>The ID of the attachment.</p>
51      */
SetTransitGatewayAttachmentId(const Aws::String & value)52     inline void SetTransitGatewayAttachmentId(const Aws::String& value) { m_transitGatewayAttachmentIdHasBeenSet = true; m_transitGatewayAttachmentId = value; }
53 
54     /**
55      * <p>The ID of the attachment.</p>
56      */
SetTransitGatewayAttachmentId(Aws::String && value)57     inline void SetTransitGatewayAttachmentId(Aws::String&& value) { m_transitGatewayAttachmentIdHasBeenSet = true; m_transitGatewayAttachmentId = std::move(value); }
58 
59     /**
60      * <p>The ID of the attachment.</p>
61      */
SetTransitGatewayAttachmentId(const char * value)62     inline void SetTransitGatewayAttachmentId(const char* value) { m_transitGatewayAttachmentIdHasBeenSet = true; m_transitGatewayAttachmentId.assign(value); }
63 
64     /**
65      * <p>The ID of the attachment.</p>
66      */
WithTransitGatewayAttachmentId(const Aws::String & value)67     inline DeleteTransitGatewayVpcAttachmentRequest& WithTransitGatewayAttachmentId(const Aws::String& value) { SetTransitGatewayAttachmentId(value); return *this;}
68 
69     /**
70      * <p>The ID of the attachment.</p>
71      */
WithTransitGatewayAttachmentId(Aws::String && value)72     inline DeleteTransitGatewayVpcAttachmentRequest& WithTransitGatewayAttachmentId(Aws::String&& value) { SetTransitGatewayAttachmentId(std::move(value)); return *this;}
73 
74     /**
75      * <p>The ID of the attachment.</p>
76      */
WithTransitGatewayAttachmentId(const char * value)77     inline DeleteTransitGatewayVpcAttachmentRequest& WithTransitGatewayAttachmentId(const char* value) { SetTransitGatewayAttachmentId(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 DeleteTransitGatewayVpcAttachmentRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
111 
112   private:
113 
114     Aws::String m_transitGatewayAttachmentId;
115     bool m_transitGatewayAttachmentIdHasBeenSet;
116 
117     bool m_dryRun;
118     bool m_dryRunHasBeenSet;
119   };
120 
121 } // namespace Model
122 } // namespace EC2
123 } // namespace Aws
124