com.amazonaws.services.ec2.model.CreateClientVpnRouteRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2016-2021 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.CreateClientVpnRouteRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateClientVpnRouteRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
DryRunSupportedRequest {
/**
*
* The ID of the Client VPN endpoint to which to add the route.
*
*/
private String clientVpnEndpointId;
/**
*
* The IPv4 address range, in CIDR notation, of the route destination. For example:
*
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's IPv4 CIDR
* range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
*
*/
private String destinationCidrBlock;
/**
*
* The ID of the subnet through which you want to route traffic. The specified subnet must be an existing target
* network of the Client VPN endpoint.
*
*
* Alternatively, if you're adding a route for the local network, specify local
.
*
*/
private String targetVpcSubnetId;
/**
*
* A brief description of the route.
*
*/
private String description;
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*/
private String clientToken;
/**
*
* The ID of the Client VPN endpoint to which to add the route.
*
*
* @param clientVpnEndpointId
* The ID of the Client VPN endpoint to which to add the route.
*/
public void setClientVpnEndpointId(String clientVpnEndpointId) {
this.clientVpnEndpointId = clientVpnEndpointId;
}
/**
*
* The ID of the Client VPN endpoint to which to add the route.
*
*
* @return The ID of the Client VPN endpoint to which to add the route.
*/
public String getClientVpnEndpointId() {
return this.clientVpnEndpointId;
}
/**
*
* The ID of the Client VPN endpoint to which to add the route.
*
*
* @param clientVpnEndpointId
* The ID of the Client VPN endpoint to which to add the route.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateClientVpnRouteRequest withClientVpnEndpointId(String clientVpnEndpointId) {
setClientVpnEndpointId(clientVpnEndpointId);
return this;
}
/**
*
* The IPv4 address range, in CIDR notation, of the route destination. For example:
*
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's IPv4 CIDR
* range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
*
*
* @param destinationCidrBlock
* The IPv4 address range, in CIDR notation, of the route destination. For example:
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's
* IPv4 CIDR range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
*/
public void setDestinationCidrBlock(String destinationCidrBlock) {
this.destinationCidrBlock = destinationCidrBlock;
}
/**
*
* The IPv4 address range, in CIDR notation, of the route destination. For example:
*
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's IPv4 CIDR
* range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
*
*
* @return The IPv4 address range, in CIDR notation, of the route destination. For example:
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's
* IPv4 CIDR range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
*/
public String getDestinationCidrBlock() {
return this.destinationCidrBlock;
}
/**
*
* The IPv4 address range, in CIDR notation, of the route destination. For example:
*
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's IPv4 CIDR
* range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
*
*
* @param destinationCidrBlock
* The IPv4 address range, in CIDR notation, of the route destination. For example:
*
* -
*
* To add a route for Internet access, enter 0.0.0.0/0
*
*
* -
*
* To add a route for a peered VPC, enter the peered VPC's IPv4 CIDR range
*
*
* -
*
* To add a route for an on-premises network, enter the Amazon Web Services Site-to-Site VPN connection's
* IPv4 CIDR range
*
*
* -
*
* To add a route for the local network, enter the client CIDR range
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateClientVpnRouteRequest withDestinationCidrBlock(String destinationCidrBlock) {
setDestinationCidrBlock(destinationCidrBlock);
return this;
}
/**
*
* The ID of the subnet through which you want to route traffic. The specified subnet must be an existing target
* network of the Client VPN endpoint.
*
*
* Alternatively, if you're adding a route for the local network, specify local
.
*
*
* @param targetVpcSubnetId
* The ID of the subnet through which you want to route traffic. The specified subnet must be an existing
* target network of the Client VPN endpoint.
*
* Alternatively, if you're adding a route for the local network, specify local
.
*/
public void setTargetVpcSubnetId(String targetVpcSubnetId) {
this.targetVpcSubnetId = targetVpcSubnetId;
}
/**
*
* The ID of the subnet through which you want to route traffic. The specified subnet must be an existing target
* network of the Client VPN endpoint.
*
*
* Alternatively, if you're adding a route for the local network, specify local
.
*
*
* @return The ID of the subnet through which you want to route traffic. The specified subnet must be an existing
* target network of the Client VPN endpoint.
*
* Alternatively, if you're adding a route for the local network, specify local
.
*/
public String getTargetVpcSubnetId() {
return this.targetVpcSubnetId;
}
/**
*
* The ID of the subnet through which you want to route traffic. The specified subnet must be an existing target
* network of the Client VPN endpoint.
*
*
* Alternatively, if you're adding a route for the local network, specify local
.
*
*
* @param targetVpcSubnetId
* The ID of the subnet through which you want to route traffic. The specified subnet must be an existing
* target network of the Client VPN endpoint.
*
* Alternatively, if you're adding a route for the local network, specify local
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateClientVpnRouteRequest withTargetVpcSubnetId(String targetVpcSubnetId) {
setTargetVpcSubnetId(targetVpcSubnetId);
return this;
}
/**
*
* A brief description of the route.
*
*
* @param description
* A brief description of the route.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A brief description of the route.
*
*
* @return A brief description of the route.
*/
public String getDescription() {
return this.description;
}
/**
*
* A brief description of the route.
*
*
* @param description
* A brief description of the route.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateClientVpnRouteRequest withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*
* @param clientToken
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*/
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
}
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*
* @return Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*/
public String getClientToken() {
return this.clientToken;
}
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*
* @param clientToken
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateClientVpnRouteRequest withClientToken(String clientToken) {
setClientToken(clientToken);
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 CreateClientVpnRouteRequestMarshaller().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 (getClientVpnEndpointId() != null)
sb.append("ClientVpnEndpointId: ").append(getClientVpnEndpointId()).append(",");
if (getDestinationCidrBlock() != null)
sb.append("DestinationCidrBlock: ").append(getDestinationCidrBlock()).append(",");
if (getTargetVpcSubnetId() != null)
sb.append("TargetVpcSubnetId: ").append(getTargetVpcSubnetId()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getClientToken() != null)
sb.append("ClientToken: ").append(getClientToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateClientVpnRouteRequest == false)
return false;
CreateClientVpnRouteRequest other = (CreateClientVpnRouteRequest) obj;
if (other.getClientVpnEndpointId() == null ^ this.getClientVpnEndpointId() == null)
return false;
if (other.getClientVpnEndpointId() != null && other.getClientVpnEndpointId().equals(this.getClientVpnEndpointId()) == false)
return false;
if (other.getDestinationCidrBlock() == null ^ this.getDestinationCidrBlock() == null)
return false;
if (other.getDestinationCidrBlock() != null && other.getDestinationCidrBlock().equals(this.getDestinationCidrBlock()) == false)
return false;
if (other.getTargetVpcSubnetId() == null ^ this.getTargetVpcSubnetId() == null)
return false;
if (other.getTargetVpcSubnetId() != null && other.getTargetVpcSubnetId().equals(this.getTargetVpcSubnetId()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getClientToken() == null ^ this.getClientToken() == null)
return false;
if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getClientVpnEndpointId() == null) ? 0 : getClientVpnEndpointId().hashCode());
hashCode = prime * hashCode + ((getDestinationCidrBlock() == null) ? 0 : getDestinationCidrBlock().hashCode());
hashCode = prime * hashCode + ((getTargetVpcSubnetId() == null) ? 0 : getTargetVpcSubnetId().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode());
return hashCode;
}
@Override
public CreateClientVpnRouteRequest clone() {
return (CreateClientVpnRouteRequest) super.clone();
}
}