com.amazonaws.services.ec2.model.ReplaceRouteRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2019-2024 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 javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.ReplaceRouteRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ReplaceRouteRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest {
/**
*
* 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.
*
*/
private String destinationCidrBlock;
/**
*
* 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.
*
*/
private String destinationIpv6CidrBlock;
/**
*
* The ID of the prefix list for the route.
*
*/
private String destinationPrefixListId;
/**
*
* The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
*
*/
private String vpcEndpointId;
/**
*
* [IPv6 traffic only] The ID of an egress-only internet gateway.
*
*/
private String egressOnlyInternetGatewayId;
/**
*
* The ID of an internet gateway or virtual private gateway.
*
*/
private String gatewayId;
/**
*
* The ID of a NAT instance in your VPC.
*
*/
private String instanceId;
/**
*
* Specifies whether to reset the local route to its default target (local
).
*
*/
private Boolean localTarget;
/**
*
* [IPv4 traffic only] The ID of a NAT gateway.
*
*/
private String natGatewayId;
/**
*
* The ID of a transit gateway.
*
*/
private String transitGatewayId;
/**
*
* The ID of the local gateway.
*
*/
private String localGatewayId;
/**
*
* [IPv4 traffic only] The ID of a carrier gateway.
*
*/
private String carrierGatewayId;
/**
*
* The ID of a network interface.
*
*/
private String networkInterfaceId;
/**
*
* The ID of the route table.
*
*/
private String routeTableId;
/**
*
* The ID of a VPC peering connection.
*
*/
private String vpcPeeringConnectionId;
/**
*
* The Amazon Resource Name (ARN) of the core network.
*
*/
private String coreNetworkArn;
/**
*
* 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.
*
*
* @param 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 void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = 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.
*
*
* @return 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 String getDestinationCidrBlock() {
return this.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.
*
*
* @param 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withDestinationCidrBlock(String destinationCidrBlock) {
setDestinationCidrBlock(destinationCidrBlock);
return this;
}
/**
*
* 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.
*
*
* @param 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 void setDestinationIpv6CidrBlock(String destinationIpv6CidrBlock) {
this.destinationIpv6CidrBlock = 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.
*
*
* @return 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 String getDestinationIpv6CidrBlock() {
return this.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.
*
*
* @param 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withDestinationIpv6CidrBlock(String destinationIpv6CidrBlock) {
setDestinationIpv6CidrBlock(destinationIpv6CidrBlock);
return this;
}
/**
*
* The ID of the prefix list for the route.
*
*
* @param destinationPrefixListId
* The ID of the prefix list for the route.
*/
public void setDestinationPrefixListId(String destinationPrefixListId) {
this.destinationPrefixListId = destinationPrefixListId;
}
/**
*
* The ID of the prefix list for the route.
*
*
* @return The ID of the prefix list for the route.
*/
public String getDestinationPrefixListId() {
return this.destinationPrefixListId;
}
/**
*
* The ID of the prefix list for the route.
*
*
* @param destinationPrefixListId
* The ID of the prefix list for the route.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withDestinationPrefixListId(String destinationPrefixListId) {
setDestinationPrefixListId(destinationPrefixListId);
return this;
}
/**
*
* The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
*
*
* @param vpcEndpointId
* The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
*/
public void setVpcEndpointId(String vpcEndpointId) {
this.vpcEndpointId = vpcEndpointId;
}
/**
*
* The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
*
*
* @return The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
*/
public String getVpcEndpointId() {
return this.vpcEndpointId;
}
/**
*
* The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
*
*
* @param vpcEndpointId
* The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withVpcEndpointId(String vpcEndpointId) {
setVpcEndpointId(vpcEndpointId);
return this;
}
/**
*
* [IPv6 traffic only] The ID of an egress-only internet gateway.
*
*
* @param egressOnlyInternetGatewayId
* [IPv6 traffic only] The ID of an egress-only internet gateway.
*/
public void setEgressOnlyInternetGatewayId(String egressOnlyInternetGatewayId) {
this.egressOnlyInternetGatewayId = egressOnlyInternetGatewayId;
}
/**
*
* [IPv6 traffic only] The ID of an egress-only internet gateway.
*
*
* @return [IPv6 traffic only] The ID of an egress-only internet gateway.
*/
public String getEgressOnlyInternetGatewayId() {
return this.egressOnlyInternetGatewayId;
}
/**
*
* [IPv6 traffic only] The ID of an egress-only internet gateway.
*
*
* @param egressOnlyInternetGatewayId
* [IPv6 traffic only] The ID of an egress-only internet gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withEgressOnlyInternetGatewayId(String egressOnlyInternetGatewayId) {
setEgressOnlyInternetGatewayId(egressOnlyInternetGatewayId);
return this;
}
/**
*
* The ID of an internet gateway or virtual private gateway.
*
*
* @param gatewayId
* The ID of an internet gateway or virtual private gateway.
*/
public void setGatewayId(String gatewayId) {
this.gatewayId = gatewayId;
}
/**
*
* The ID of an internet gateway or virtual private gateway.
*
*
* @return The ID of an internet gateway or virtual private gateway.
*/
public String getGatewayId() {
return this.gatewayId;
}
/**
*
* The ID of an internet gateway or virtual private gateway.
*
*
* @param gatewayId
* The ID of an internet gateway or virtual private gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withGatewayId(String gatewayId) {
setGatewayId(gatewayId);
return this;
}
/**
*
* The ID of a NAT instance in your VPC.
*
*
* @param instanceId
* The ID of a NAT instance in your VPC.
*/
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
/**
*
* The ID of a NAT instance in your VPC.
*
*
* @return The ID of a NAT instance in your VPC.
*/
public String getInstanceId() {
return this.instanceId;
}
/**
*
* The ID of a NAT instance in your VPC.
*
*
* @param instanceId
* The ID of a NAT instance in your VPC.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withInstanceId(String instanceId) {
setInstanceId(instanceId);
return this;
}
/**
*
* Specifies whether to reset the local route to its default target (local
).
*
*
* @param localTarget
* Specifies whether to reset the local route to its default target (local
).
*/
public void setLocalTarget(Boolean localTarget) {
this.localTarget = localTarget;
}
/**
*
* Specifies whether to reset the local route to its default target (local
).
*
*
* @return Specifies whether to reset the local route to its default target (local
).
*/
public Boolean getLocalTarget() {
return this.localTarget;
}
/**
*
* Specifies whether to reset the local route to its default target (local
).
*
*
* @param localTarget
* Specifies whether to reset the local route to its default target (local
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withLocalTarget(Boolean localTarget) {
setLocalTarget(localTarget);
return this;
}
/**
*
* Specifies whether to reset the local route to its default target (local
).
*
*
* @return Specifies whether to reset the local route to its default target (local
).
*/
public Boolean isLocalTarget() {
return this.localTarget;
}
/**
*
* [IPv4 traffic only] The ID of a NAT gateway.
*
*
* @param natGatewayId
* [IPv4 traffic only] The ID of a NAT gateway.
*/
public void setNatGatewayId(String natGatewayId) {
this.natGatewayId = natGatewayId;
}
/**
*
* [IPv4 traffic only] The ID of a NAT gateway.
*
*
* @return [IPv4 traffic only] The ID of a NAT gateway.
*/
public String getNatGatewayId() {
return this.natGatewayId;
}
/**
*
* [IPv4 traffic only] The ID of a NAT gateway.
*
*
* @param natGatewayId
* [IPv4 traffic only] The ID of a NAT gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withNatGatewayId(String natGatewayId) {
setNatGatewayId(natGatewayId);
return this;
}
/**
*
* The ID of a transit gateway.
*
*
* @param transitGatewayId
* The ID of a transit gateway.
*/
public void setTransitGatewayId(String transitGatewayId) {
this.transitGatewayId = transitGatewayId;
}
/**
*
* The ID of a transit gateway.
*
*
* @return The ID of a transit gateway.
*/
public String getTransitGatewayId() {
return this.transitGatewayId;
}
/**
*
* The ID of a transit gateway.
*
*
* @param transitGatewayId
* The ID of a transit gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withTransitGatewayId(String transitGatewayId) {
setTransitGatewayId(transitGatewayId);
return this;
}
/**
*
* The ID of the local gateway.
*
*
* @param localGatewayId
* The ID of the local gateway.
*/
public void setLocalGatewayId(String localGatewayId) {
this.localGatewayId = localGatewayId;
}
/**
*
* The ID of the local gateway.
*
*
* @return The ID of the local gateway.
*/
public String getLocalGatewayId() {
return this.localGatewayId;
}
/**
*
* The ID of the local gateway.
*
*
* @param localGatewayId
* The ID of the local gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withLocalGatewayId(String localGatewayId) {
setLocalGatewayId(localGatewayId);
return this;
}
/**
*
* [IPv4 traffic only] The ID of a carrier gateway.
*
*
* @param carrierGatewayId
* [IPv4 traffic only] The ID of a carrier gateway.
*/
public void setCarrierGatewayId(String carrierGatewayId) {
this.carrierGatewayId = carrierGatewayId;
}
/**
*
* [IPv4 traffic only] The ID of a carrier gateway.
*
*
* @return [IPv4 traffic only] The ID of a carrier gateway.
*/
public String getCarrierGatewayId() {
return this.carrierGatewayId;
}
/**
*
* [IPv4 traffic only] The ID of a carrier gateway.
*
*
* @param carrierGatewayId
* [IPv4 traffic only] The ID of a carrier gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withCarrierGatewayId(String carrierGatewayId) {
setCarrierGatewayId(carrierGatewayId);
return this;
}
/**
*
* 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.
*
*
* @return The ID of a network interface.
*/
public String getNetworkInterfaceId() {
return this.networkInterfaceId;
}
/**
*
* The ID of a network interface.
*
*
* @param networkInterfaceId
* The ID of a network interface.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withNetworkInterfaceId(String networkInterfaceId) {
setNetworkInterfaceId(networkInterfaceId);
return this;
}
/**
*
* The ID of the route table.
*
*
* @param routeTableId
* The ID of the route table.
*/
public void setRouteTableId(String routeTableId) {
this.routeTableId = routeTableId;
}
/**
*
* The ID of the route table.
*
*
* @return The ID of the route table.
*/
public String getRouteTableId() {
return this.routeTableId;
}
/**
*
* The ID of the route table.
*
*
* @param routeTableId
* The ID of the route table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withRouteTableId(String routeTableId) {
setRouteTableId(routeTableId);
return this;
}
/**
*
* 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.
*
*
* @return The ID of a VPC peering connection.
*/
public String getVpcPeeringConnectionId() {
return this.vpcPeeringConnectionId;
}
/**
*
* The ID of a VPC peering connection.
*
*
* @param vpcPeeringConnectionId
* The ID of a VPC peering connection.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withVpcPeeringConnectionId(String vpcPeeringConnectionId) {
setVpcPeeringConnectionId(vpcPeeringConnectionId);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the core network.
*
*
* @param coreNetworkArn
* The Amazon Resource Name (ARN) of the core network.
*/
public void setCoreNetworkArn(String coreNetworkArn) {
this.coreNetworkArn = coreNetworkArn;
}
/**
*
* The Amazon Resource Name (ARN) of the core network.
*
*
* @return The Amazon Resource Name (ARN) of the core network.
*/
public String getCoreNetworkArn() {
return this.coreNetworkArn;
}
/**
*
* The Amazon Resource Name (ARN) of the core network.
*
*
* @param coreNetworkArn
* The Amazon Resource Name (ARN) of the core network.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ReplaceRouteRequest withCoreNetworkArn(String coreNetworkArn) {
setCoreNetworkArn(coreNetworkArn);
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 getDryRunRequest() {
Request request = new ReplaceRouteRequestMarshaller().marshall(this);
request.addParameter("DryRun", Boolean.toString(true));
return request;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDestinationCidrBlock() != null)
sb.append("DestinationCidrBlock: ").append(getDestinationCidrBlock()).append(",");
if (getDestinationIpv6CidrBlock() != null)
sb.append("DestinationIpv6CidrBlock: ").append(getDestinationIpv6CidrBlock()).append(",");
if (getDestinationPrefixListId() != null)
sb.append("DestinationPrefixListId: ").append(getDestinationPrefixListId()).append(",");
if (getVpcEndpointId() != null)
sb.append("VpcEndpointId: ").append(getVpcEndpointId()).append(",");
if (getEgressOnlyInternetGatewayId() != null)
sb.append("EgressOnlyInternetGatewayId: ").append(getEgressOnlyInternetGatewayId()).append(",");
if (getGatewayId() != null)
sb.append("GatewayId: ").append(getGatewayId()).append(",");
if (getInstanceId() != null)
sb.append("InstanceId: ").append(getInstanceId()).append(",");
if (getLocalTarget() != null)
sb.append("LocalTarget: ").append(getLocalTarget()).append(",");
if (getNatGatewayId() != null)
sb.append("NatGatewayId: ").append(getNatGatewayId()).append(",");
if (getTransitGatewayId() != null)
sb.append("TransitGatewayId: ").append(getTransitGatewayId()).append(",");
if (getLocalGatewayId() != null)
sb.append("LocalGatewayId: ").append(getLocalGatewayId()).append(",");
if (getCarrierGatewayId() != null)
sb.append("CarrierGatewayId: ").append(getCarrierGatewayId()).append(",");
if (getNetworkInterfaceId() != null)
sb.append("NetworkInterfaceId: ").append(getNetworkInterfaceId()).append(",");
if (getRouteTableId() != null)
sb.append("RouteTableId: ").append(getRouteTableId()).append(",");
if (getVpcPeeringConnectionId() != null)
sb.append("VpcPeeringConnectionId: ").append(getVpcPeeringConnectionId()).append(",");
if (getCoreNetworkArn() != null)
sb.append("CoreNetworkArn: ").append(getCoreNetworkArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ReplaceRouteRequest == false)
return false;
ReplaceRouteRequest other = (ReplaceRouteRequest) obj;
if (other.getDestinationCidrBlock() == null ^ this.getDestinationCidrBlock() == null)
return false;
if (other.getDestinationCidrBlock() != null && other.getDestinationCidrBlock().equals(this.getDestinationCidrBlock()) == false)
return false;
if (other.getDestinationIpv6CidrBlock() == null ^ this.getDestinationIpv6CidrBlock() == null)
return false;
if (other.getDestinationIpv6CidrBlock() != null && other.getDestinationIpv6CidrBlock().equals(this.getDestinationIpv6CidrBlock()) == false)
return false;
if (other.getDestinationPrefixListId() == null ^ this.getDestinationPrefixListId() == null)
return false;
if (other.getDestinationPrefixListId() != null && other.getDestinationPrefixListId().equals(this.getDestinationPrefixListId()) == false)
return false;
if (other.getVpcEndpointId() == null ^ this.getVpcEndpointId() == null)
return false;
if (other.getVpcEndpointId() != null && other.getVpcEndpointId().equals(this.getVpcEndpointId()) == false)
return false;
if (other.getEgressOnlyInternetGatewayId() == null ^ this.getEgressOnlyInternetGatewayId() == null)
return false;
if (other.getEgressOnlyInternetGatewayId() != null && other.getEgressOnlyInternetGatewayId().equals(this.getEgressOnlyInternetGatewayId()) == false)
return false;
if (other.getGatewayId() == null ^ this.getGatewayId() == null)
return false;
if (other.getGatewayId() != null && other.getGatewayId().equals(this.getGatewayId()) == false)
return false;
if (other.getInstanceId() == null ^ this.getInstanceId() == null)
return false;
if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == false)
return false;
if (other.getLocalTarget() == null ^ this.getLocalTarget() == null)
return false;
if (other.getLocalTarget() != null && other.getLocalTarget().equals(this.getLocalTarget()) == false)
return false;
if (other.getNatGatewayId() == null ^ this.getNatGatewayId() == null)
return false;
if (other.getNatGatewayId() != null && other.getNatGatewayId().equals(this.getNatGatewayId()) == false)
return false;
if (other.getTransitGatewayId() == null ^ this.getTransitGatewayId() == null)
return false;
if (other.getTransitGatewayId() != null && other.getTransitGatewayId().equals(this.getTransitGatewayId()) == false)
return false;
if (other.getLocalGatewayId() == null ^ this.getLocalGatewayId() == null)
return false;
if (other.getLocalGatewayId() != null && other.getLocalGatewayId().equals(this.getLocalGatewayId()) == false)
return false;
if (other.getCarrierGatewayId() == null ^ this.getCarrierGatewayId() == null)
return false;
if (other.getCarrierGatewayId() != null && other.getCarrierGatewayId().equals(this.getCarrierGatewayId()) == false)
return false;
if (other.getNetworkInterfaceId() == null ^ this.getNetworkInterfaceId() == null)
return false;
if (other.getNetworkInterfaceId() != null && other.getNetworkInterfaceId().equals(this.getNetworkInterfaceId()) == false)
return false;
if (other.getRouteTableId() == null ^ this.getRouteTableId() == null)
return false;
if (other.getRouteTableId() != null && other.getRouteTableId().equals(this.getRouteTableId()) == false)
return false;
if (other.getVpcPeeringConnectionId() == null ^ this.getVpcPeeringConnectionId() == null)
return false;
if (other.getVpcPeeringConnectionId() != null && other.getVpcPeeringConnectionId().equals(this.getVpcPeeringConnectionId()) == false)
return false;
if (other.getCoreNetworkArn() == null ^ this.getCoreNetworkArn() == null)
return false;
if (other.getCoreNetworkArn() != null && other.getCoreNetworkArn().equals(this.getCoreNetworkArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDestinationCidrBlock() == null) ? 0 : getDestinationCidrBlock().hashCode());
hashCode = prime * hashCode + ((getDestinationIpv6CidrBlock() == null) ? 0 : getDestinationIpv6CidrBlock().hashCode());
hashCode = prime * hashCode + ((getDestinationPrefixListId() == null) ? 0 : getDestinationPrefixListId().hashCode());
hashCode = prime * hashCode + ((getVpcEndpointId() == null) ? 0 : getVpcEndpointId().hashCode());
hashCode = prime * hashCode + ((getEgressOnlyInternetGatewayId() == null) ? 0 : getEgressOnlyInternetGatewayId().hashCode());
hashCode = prime * hashCode + ((getGatewayId() == null) ? 0 : getGatewayId().hashCode());
hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode());
hashCode = prime * hashCode + ((getLocalTarget() == null) ? 0 : getLocalTarget().hashCode());
hashCode = prime * hashCode + ((getNatGatewayId() == null) ? 0 : getNatGatewayId().hashCode());
hashCode = prime * hashCode + ((getTransitGatewayId() == null) ? 0 : getTransitGatewayId().hashCode());
hashCode = prime * hashCode + ((getLocalGatewayId() == null) ? 0 : getLocalGatewayId().hashCode());
hashCode = prime * hashCode + ((getCarrierGatewayId() == null) ? 0 : getCarrierGatewayId().hashCode());
hashCode = prime * hashCode + ((getNetworkInterfaceId() == null) ? 0 : getNetworkInterfaceId().hashCode());
hashCode = prime * hashCode + ((getRouteTableId() == null) ? 0 : getRouteTableId().hashCode());
hashCode = prime * hashCode + ((getVpcPeeringConnectionId() == null) ? 0 : getVpcPeeringConnectionId().hashCode());
hashCode = prime * hashCode + ((getCoreNetworkArn() == null) ? 0 : getCoreNetworkArn().hashCode());
return hashCode;
}
@Override
public ReplaceRouteRequest clone() {
return (ReplaceRouteRequest) super.clone();
}
}