CreateRouteRequest Class

.NET Framework 4.5
 
 
 
Did this page help you?  Yes  No   Tell us about it...
Container for the parameters to the CreateRoute operation.

Creates a new route in a route table within a VPC. The route's target can be either a gateway attached to the VPC or a NAT instance in the VPC.

When determining how to route traffic, we use the route with the most specific match. For example, let's say the traffic is destined for 192.0.2.3 , and the route table includes the following two routes:

  • 192.0.2.0/24 (goes to some target A)
  • 192.0.2.0/28 (goes to some target B)

Both routes apply to the traffic destined for 192.0.2.3 . However, the second route in the list is more specific, so we use that route to determine where to target the traffic.

For more information about route tables, go to Route Tables in the Amazon Virtual Private Cloud User Guide.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.Model.CreateRouteRequest

Namespace: Amazon.EC2.Model
Assembly: AWSSDK.dll
Version: 2.0.0.3

Syntax

C#
public class CreateRouteRequest : AmazonWebServiceRequest
         IRequestEvents

The CreateRouteRequest type exposes the following members

Constructors

  Name Description
Public Method CreateRouteRequest()

Properties

  Name Description
Public Property DestinationCidrBlock The CIDR address block used for the destination match. For example: 0.0.0.0/0. Routing decisions are based on the most specific match.
Public Property GatewayId The ID of a VPN or Internet gateway attached to your VPC. You must provide either GatewayId or InstanceId, but not both.
Public Property InstanceId The ID of a NAT instance in your VPC. You must provide either GatewayId or InstanceId, but not both.
Public Property NetworkInterfaceId
Public Property RouteTableId The ID of the route table where the route will be added.

Version Information

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

.NET for Windows Store apps:
Supported in: Windows 8

.NET for Windows Phone:
Supported in: Window Phone 8