/* * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.ec2.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; import com.amazonaws.Request; import com.amazonaws.services.ec2.model.transform.CreateRouteRequestMarshaller; /** * Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#createRoute(CreateRouteRequest) CreateRoute operation}. *
* Creates a route in a route table within a VPC. *
** You must specify one of the following targets: Internet gateway or * virtual private gateway, NAT instance, NAT gateway, VPC peering * connection, or network interface. *
*
* 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 covers a smaller number of IP
* addresses and is therefore more specific, so we use that route to
* determine where to target the traffic.
*
* For more information about route tables, see * Route Tables * in the Amazon Virtual Private Cloud User Guide . *
* * @see com.amazonaws.services.ec2.AmazonEC2#createRoute(CreateRouteRequest) */ public class CreateRouteRequest extends AmazonWebServiceRequest implements Serializable, DryRunSupportedRequest* Returns a reference to this object so that method calls can be chained together. * * @param routeTableId The ID of the route table for the route. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateRouteRequest withRouteTableId(String routeTableId) { this.routeTableId = routeTableId; return this; } /** * The CIDR address block used for the destination match. Routing * decisions are based on the most specific match. * * @return The CIDR address block used for the destination match. Routing * decisions are based on the most specific match. */ public String getDestinationCidrBlock() { return destinationCidrBlock; } /** * The CIDR address block used for the destination match. Routing * decisions are based on the most specific match. * * @param destinationCidrBlock The CIDR address block used for the destination match. Routing * decisions are based on the most specific match. */ public void setDestinationCidrBlock(String destinationCidrBlock) { this.destinationCidrBlock = destinationCidrBlock; } /** * The CIDR address block used for the destination match. Routing * decisions are based on the most specific match. *
* Returns a reference to this object so that method calls can be chained together. * * @param destinationCidrBlock The CIDR address block used for the destination match. Routing * decisions are based on the most specific match. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateRouteRequest withDestinationCidrBlock(String destinationCidrBlock) { this.destinationCidrBlock = destinationCidrBlock; return this; } /** * The ID of an Internet gateway or virtual private gateway attached to * your VPC. * * @return The ID of an Internet gateway or virtual private gateway attached to * your VPC. */ public String getGatewayId() { return gatewayId; } /** * The ID of an Internet gateway or virtual private gateway attached to * your VPC. * * @param gatewayId The ID of an Internet gateway or virtual private gateway attached to * your VPC. */ public void setGatewayId(String gatewayId) { this.gatewayId = gatewayId; } /** * The ID of an Internet gateway or virtual private gateway attached to * your VPC. *
* Returns a reference to this object so that method calls can be chained together. * * @param gatewayId The ID of an Internet gateway or virtual private gateway attached to * your VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateRouteRequest withGatewayId(String gatewayId) { this.gatewayId = gatewayId; return this; } /** * The ID of a NAT instance in your VPC. The operation fails if you * specify an instance ID unless exactly one network interface is * attached. * * @return The ID of a NAT instance in your VPC. The operation fails if you * specify an instance ID unless exactly one network interface is * attached. */ public String getInstanceId() { return instanceId; } /** * The ID of a NAT instance in your VPC. The operation fails if you * specify an instance ID unless exactly one network interface is * attached. * * @param instanceId The ID of a NAT instance in your VPC. The operation fails if you * specify an instance ID unless exactly one network interface is * attached. */ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** * The ID of a NAT instance in your VPC. The operation fails if you * specify an instance ID unless exactly one network interface is * attached. *
* Returns a reference to this object so that method calls can be chained together. * * @param instanceId The ID of a NAT instance in your VPC. The operation fails if you * specify an instance ID unless exactly one network interface is * attached. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateRouteRequest withInstanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * The ID of a network interface. * * @return The ID of a network interface. */ public String getNetworkInterfaceId() { return networkInterfaceId; } /** * The ID of a network interface. * * @param networkInterfaceId The ID of a network interface. */ public void setNetworkInterfaceId(String networkInterfaceId) { this.networkInterfaceId = networkInterfaceId; } /** * The ID of a network interface. *
* Returns a reference to this object so that method calls can be chained together. * * @param networkInterfaceId The ID of a network interface. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateRouteRequest withNetworkInterfaceId(String networkInterfaceId) { this.networkInterfaceId = networkInterfaceId; return this; } /** * The ID of a VPC peering connection. * * @return The ID of a VPC peering connection. */ public String getVpcPeeringConnectionId() { return vpcPeeringConnectionId; } /** * The ID of a VPC peering connection. * * @param vpcPeeringConnectionId The ID of a VPC peering connection. */ public void setVpcPeeringConnectionId(String vpcPeeringConnectionId) { this.vpcPeeringConnectionId = vpcPeeringConnectionId; } /** * The ID of a VPC peering connection. *
* Returns a reference to this object so that method calls can be chained together. * * @param vpcPeeringConnectionId The ID of a VPC peering connection. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateRouteRequest withVpcPeeringConnectionId(String vpcPeeringConnectionId) { this.vpcPeeringConnectionId = vpcPeeringConnectionId; return this; } /** * The ID of a NAT gateway. * * @return The ID of a NAT gateway. */ public String getNatGatewayId() { return natGatewayId; } /** * The ID of a NAT gateway. * * @param natGatewayId The ID of a NAT gateway. */ public void setNatGatewayId(String natGatewayId) { this.natGatewayId = natGatewayId; } /** * The ID of a NAT gateway. *
* Returns a reference to this object so that method calls can be chained together.
*
* @param natGatewayId The ID of a NAT gateway.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public CreateRouteRequest withNatGatewayId(String natGatewayId) {
this.natGatewayId = natGatewayId;
return this;
}
/**
* This method is intended for internal use only.
* Returns the marshaled request configured with additional parameters to
* enable operation dry-run.
*/
@Override
public Request