338 lines
18 KiB
C++
338 lines
18 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 <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/ec2/model/Filter.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_EC2_API SearchTransitGatewayRoutesRequest : public EC2Request
|
|
{
|
|
public:
|
|
SearchTransitGatewayRoutesRequest();
|
|
|
|
// 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 "SearchTransitGatewayRoutes"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline const Aws::String& GetTransitGatewayRouteTableId() const{ return m_transitGatewayRouteTableId; }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline bool TransitGatewayRouteTableIdHasBeenSet() const { return m_transitGatewayRouteTableIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline void SetTransitGatewayRouteTableId(const Aws::String& value) { m_transitGatewayRouteTableIdHasBeenSet = true; m_transitGatewayRouteTableId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline void SetTransitGatewayRouteTableId(Aws::String&& value) { m_transitGatewayRouteTableIdHasBeenSet = true; m_transitGatewayRouteTableId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline void SetTransitGatewayRouteTableId(const char* value) { m_transitGatewayRouteTableIdHasBeenSet = true; m_transitGatewayRouteTableId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& WithTransitGatewayRouteTableId(const Aws::String& value) { SetTransitGatewayRouteTableId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& WithTransitGatewayRouteTableId(Aws::String&& value) { SetTransitGatewayRouteTableId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway route table.</p>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& WithTransitGatewayRouteTableId(const char* value) { SetTransitGatewayRouteTableId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>One or more filters. The possible values are:</p> <ul> <li> <p>
|
|
* <code>attachment.transit-gateway-attachment-id</code>- The id of the transit
|
|
* gateway attachment.</p> </li> <li> <p> <code>attachment.resource-id</code> - The
|
|
* resource id of the transit gateway attachment.</p> </li> <li> <p>
|
|
* <code>attachment.resource-type</code> - The attachment resource type
|
|
* (<code>vpc</code> | <code>vpn</code> | <code>direct-connect-gateway</code> |
|
|
* <code>tgw-peering</code>).</p> </li> <li> <p> <code>prefix-list-id</code> - The
|
|
* ID of the prefix list.</p> </li> <li> <p> <code>route-search.exact-match</code>
|
|
* - The exact match of the specified filter.</p> </li> <li> <p>
|
|
* <code>route-search.longest-prefix-match</code> - The longest prefix that matches
|
|
* the route.</p> </li> <li> <p> <code>route-search.subnet-of-match</code> - The
|
|
* routes with a subnet that match the specified CIDR filter.</p> </li> <li> <p>
|
|
* <code>route-search.supernet-of-match</code> - The routes with a CIDR that
|
|
* encompass the CIDR filter. For example, if you have 10.0.1.0/29 and 10.0.1.0/31
|
|
* routes in your route table and you specify supernet-of-match as 10.0.1.0/30,
|
|
* then the result returns 10.0.1.0/29.</p> </li> <li> <p> <code>state</code> - The
|
|
* state of the route (<code>active</code> | <code>blackhole</code>).</p> </li>
|
|
* <li> <p> <code>type</code> - The type of route (<code>propagated</code> |
|
|
* <code>static</code>).</p> </li> </ul>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of routes to return.</p>
|
|
*/
|
|
inline int GetMaxResults() const{ return m_maxResults; }
|
|
|
|
/**
|
|
* <p>The maximum number of routes to return.</p>
|
|
*/
|
|
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of routes to return.</p>
|
|
*/
|
|
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of routes to return.</p>
|
|
*/
|
|
inline SearchTransitGatewayRoutesRequest& WithMaxResults(int value) { SetMaxResults(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 SearchTransitGatewayRoutesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_transitGatewayRouteTableId;
|
|
bool m_transitGatewayRouteTableIdHasBeenSet;
|
|
|
|
Aws::Vector<Filter> m_filters;
|
|
bool m_filtersHasBeenSet;
|
|
|
|
int m_maxResults;
|
|
bool m_maxResultsHasBeenSet;
|
|
|
|
bool m_dryRun;
|
|
bool m_dryRunHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|