AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the ReplaceRoute operation. Replaces an existing route within a route table in a VPC.

You must specify either a destination CIDR block or a prefix list ID. You must also specify exactly one of the resources from the parameter list, or reset the local route to its default target.

For more information, see Route tables in the Amazon VPC User Guide.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.AmazonEC2Request
      Amazon.EC2.Model.ReplaceRouteRequest

Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public class ReplaceRouteRequest : AmazonEC2Request
         IAmazonWebServiceRequest

The ReplaceRouteRequest type exposes the following members

Constructors

NameDescription
Public Method ReplaceRouteRequest()

Properties

NameTypeDescription
Public Property CarrierGatewayId System.String

Gets and sets the property CarrierGatewayId.

[IPv4 traffic only] The ID of a carrier gateway.

Public Property CoreNetworkArn System.String

Gets and sets the property CoreNetworkArn.

The Amazon Resource Name (ARN) of the core network.

Public Property DestinationCidrBlock System.String

Gets and sets the property DestinationCidrBlock.

The IPv4 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

Public Property DestinationIpv6CidrBlock System.String

Gets and sets the property DestinationIpv6CidrBlock.

The IPv6 CIDR address block used for the destination match. The value that you provide must match the CIDR of an existing route in the table.

Public Property DestinationPrefixListId System.String

Gets and sets the property DestinationPrefixListId.

The ID of the prefix list for the route.

Public Property EgressOnlyInternetGatewayId System.String

Gets and sets the property EgressOnlyInternetGatewayId.

[IPv6 traffic only] The ID of an egress-only internet gateway.

Public Property GatewayId System.String

Gets and sets the property GatewayId.

The ID of an internet gateway or virtual private gateway.

Public Property InstanceId System.String

Gets and sets the property InstanceId.

The ID of a NAT instance in your VPC.

Public Property LocalGatewayId System.String

Gets and sets the property LocalGatewayId.

The ID of the local gateway.

Public Property LocalTarget System.Boolean

Gets and sets the property LocalTarget.

Specifies whether to reset the local route to its default target (local).

Public Property NatGatewayId System.String

Gets and sets the property NatGatewayId.

[IPv4 traffic only] The ID of a NAT gateway.

Public Property NetworkInterfaceId System.String

Gets and sets the property NetworkInterfaceId.

The ID of a network interface.

Public Property RouteTableId System.String

Gets and sets the property RouteTableId.

The ID of the route table.

Public Property TransitGatewayId System.String

Gets and sets the property TransitGatewayId.

The ID of a transit gateway.

Public Property VpcEndpointId System.String

Gets and sets the property VpcEndpointId.

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

Public Property VpcPeeringConnectionId System.String

Gets and sets the property VpcPeeringConnectionId.

The ID of a VPC peering connection.

Examples

This example replaces the specified route in the specified table table. The new route matches the specified CIDR and sends the traffic to the specified virtual private gateway.

To replace a route


var client = new AmazonEC2Client();
var response = client.ReplaceRoute(new ReplaceRouteRequest 
{
    DestinationCidrBlock = "10.0.0.0/16",
    GatewayId = "vgw-9a4cacf3",
    RouteTableId = "rtb-22574640"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5