/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** *

Contains the parameters for EnableVgwRoutePropagation.

See * Also:

AWS * API Reference

*/ class EnableVgwRoutePropagationRequest : public EC2Request { public: AWS_EC2_API EnableVgwRoutePropagationRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "EnableVgwRoutePropagation"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline const Aws::String& GetGatewayId() const{ return m_gatewayId; } /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; } /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline void SetGatewayId(const Aws::String& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = value; } /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline void SetGatewayId(Aws::String&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::move(value); } /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline void SetGatewayId(const char* value) { m_gatewayIdHasBeenSet = true; m_gatewayId.assign(value); } /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline EnableVgwRoutePropagationRequest& WithGatewayId(const Aws::String& value) { SetGatewayId(value); return *this;} /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline EnableVgwRoutePropagationRequest& WithGatewayId(Aws::String&& value) { SetGatewayId(std::move(value)); return *this;} /** *

The ID of the virtual private gateway that is attached to a VPC. The virtual * private gateway must be attached to the same VPC that the routing tables are * associated with.

*/ inline EnableVgwRoutePropagationRequest& WithGatewayId(const char* value) { SetGatewayId(value); return *this;} /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline const Aws::String& GetRouteTableId() const{ return m_routeTableId; } /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline bool RouteTableIdHasBeenSet() const { return m_routeTableIdHasBeenSet; } /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline void SetRouteTableId(const Aws::String& value) { m_routeTableIdHasBeenSet = true; m_routeTableId = value; } /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline void SetRouteTableId(Aws::String&& value) { m_routeTableIdHasBeenSet = true; m_routeTableId = std::move(value); } /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline void SetRouteTableId(const char* value) { m_routeTableIdHasBeenSet = true; m_routeTableId.assign(value); } /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline EnableVgwRoutePropagationRequest& WithRouteTableId(const Aws::String& value) { SetRouteTableId(value); return *this;} /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline EnableVgwRoutePropagationRequest& WithRouteTableId(Aws::String&& value) { SetRouteTableId(std::move(value)); return *this;} /** *

The ID of the route table. The routing table must be associated with the same * VPC that the virtual private gateway is attached to.

*/ inline EnableVgwRoutePropagationRequest& WithRouteTableId(const char* value) { SetRouteTableId(value); return *this;} /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline EnableVgwRoutePropagationRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_gatewayId; bool m_gatewayIdHasBeenSet = false; Aws::String m_routeTableId; bool m_routeTableIdHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws