This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ec2/include/aws/ec2/model/DeleteRouteRequest.h

272 lines
10 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/ec2/EC2Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace EC2
{
namespace Model
{
/**
*/
class AWS_EC2_API DeleteRouteRequest : public EC2Request
{
public:
DeleteRouteRequest();
// 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 "DeleteRoute"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline const Aws::String& GetDestinationCidrBlock() const{ return m_destinationCidrBlock; }
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline bool DestinationCidrBlockHasBeenSet() const { return m_destinationCidrBlockHasBeenSet; }
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline void SetDestinationCidrBlock(const Aws::String& value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock = value; }
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline void SetDestinationCidrBlock(Aws::String&& value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock = std::move(value); }
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline void SetDestinationCidrBlock(const char* value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock.assign(value); }
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline DeleteRouteRequest& WithDestinationCidrBlock(const Aws::String& value) { SetDestinationCidrBlock(value); return *this;}
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline DeleteRouteRequest& WithDestinationCidrBlock(Aws::String&& value) { SetDestinationCidrBlock(std::move(value)); return *this;}
/**
* <p>The IPv4 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline DeleteRouteRequest& WithDestinationCidrBlock(const char* value) { SetDestinationCidrBlock(value); return *this;}
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline const Aws::String& GetDestinationIpv6CidrBlock() const{ return m_destinationIpv6CidrBlock; }
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline bool DestinationIpv6CidrBlockHasBeenSet() const { return m_destinationIpv6CidrBlockHasBeenSet; }
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline void SetDestinationIpv6CidrBlock(const Aws::String& value) { m_destinationIpv6CidrBlockHasBeenSet = true; m_destinationIpv6CidrBlock = value; }
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline void SetDestinationIpv6CidrBlock(Aws::String&& value) { m_destinationIpv6CidrBlockHasBeenSet = true; m_destinationIpv6CidrBlock = std::move(value); }
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline void SetDestinationIpv6CidrBlock(const char* value) { m_destinationIpv6CidrBlockHasBeenSet = true; m_destinationIpv6CidrBlock.assign(value); }
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline DeleteRouteRequest& WithDestinationIpv6CidrBlock(const Aws::String& value) { SetDestinationIpv6CidrBlock(value); return *this;}
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline DeleteRouteRequest& WithDestinationIpv6CidrBlock(Aws::String&& value) { SetDestinationIpv6CidrBlock(std::move(value)); return *this;}
/**
* <p>The IPv6 CIDR range for the route. The value you specify must match the CIDR
* for the route exactly.</p>
*/
inline DeleteRouteRequest& WithDestinationIpv6CidrBlock(const char* value) { SetDestinationIpv6CidrBlock(value); return *this;}
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline const Aws::String& GetDestinationPrefixListId() const{ return m_destinationPrefixListId; }
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline bool DestinationPrefixListIdHasBeenSet() const { return m_destinationPrefixListIdHasBeenSet; }
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline void SetDestinationPrefixListId(const Aws::String& value) { m_destinationPrefixListIdHasBeenSet = true; m_destinationPrefixListId = value; }
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline void SetDestinationPrefixListId(Aws::String&& value) { m_destinationPrefixListIdHasBeenSet = true; m_destinationPrefixListId = std::move(value); }
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline void SetDestinationPrefixListId(const char* value) { m_destinationPrefixListIdHasBeenSet = true; m_destinationPrefixListId.assign(value); }
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline DeleteRouteRequest& WithDestinationPrefixListId(const Aws::String& value) { SetDestinationPrefixListId(value); return *this;}
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline DeleteRouteRequest& WithDestinationPrefixListId(Aws::String&& value) { SetDestinationPrefixListId(std::move(value)); return *this;}
/**
* <p>The ID of the prefix list for the route.</p>
*/
inline DeleteRouteRequest& WithDestinationPrefixListId(const char* value) { SetDestinationPrefixListId(value); return *this;}
/**
* <p>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 <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline bool GetDryRun() const{ return m_dryRun; }
/**
* <p>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 <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
/**
* <p>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 <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
/**
* <p>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 <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline DeleteRouteRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
/**
* <p>The ID of the route table.</p>
*/
inline const Aws::String& GetRouteTableId() const{ return m_routeTableId; }
/**
* <p>The ID of the route table.</p>
*/
inline bool RouteTableIdHasBeenSet() const { return m_routeTableIdHasBeenSet; }
/**
* <p>The ID of the route table.</p>
*/
inline void SetRouteTableId(const Aws::String& value) { m_routeTableIdHasBeenSet = true; m_routeTableId = value; }
/**
* <p>The ID of the route table.</p>
*/
inline void SetRouteTableId(Aws::String&& value) { m_routeTableIdHasBeenSet = true; m_routeTableId = std::move(value); }
/**
* <p>The ID of the route table.</p>
*/
inline void SetRouteTableId(const char* value) { m_routeTableIdHasBeenSet = true; m_routeTableId.assign(value); }
/**
* <p>The ID of the route table.</p>
*/
inline DeleteRouteRequest& WithRouteTableId(const Aws::String& value) { SetRouteTableId(value); return *this;}
/**
* <p>The ID of the route table.</p>
*/
inline DeleteRouteRequest& WithRouteTableId(Aws::String&& value) { SetRouteTableId(std::move(value)); return *this;}
/**
* <p>The ID of the route table.</p>
*/
inline DeleteRouteRequest& WithRouteTableId(const char* value) { SetRouteTableId(value); return *this;}
private:
Aws::String m_destinationCidrBlock;
bool m_destinationCidrBlockHasBeenSet;
Aws::String m_destinationIpv6CidrBlock;
bool m_destinationIpv6CidrBlockHasBeenSet;
Aws::String m_destinationPrefixListId;
bool m_destinationPrefixListIdHasBeenSet;
bool m_dryRun;
bool m_dryRunHasBeenSet;
Aws::String m_routeTableId;
bool m_routeTableIdHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws