All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.ModifyVpnTunnelOptionsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2018-2023 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.ModifyVpnTunnelOptionsRequestMarshaller;

/**
 * 
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ModifyVpnTunnelOptionsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
        DryRunSupportedRequest {

    /**
     * 

* The ID of the Amazon Web Services Site-to-Site VPN connection. *

*/ private String vpnConnectionId; /** *

* The external IP address of the VPN tunnel. *

*/ private String vpnTunnelOutsideIpAddress; /** *

* The tunnel options to modify. *

*/ private ModifyVpnTunnelOptionsSpecification tunnelOptions; /** *

* Choose whether or not to trigger immediate tunnel replacement. *

*

* Valid values: True | False *

*/ private Boolean skipTunnelReplacement; /** *

* The ID of the Amazon Web Services Site-to-Site VPN connection. *

* * @param vpnConnectionId * The ID of the Amazon Web Services Site-to-Site VPN connection. */ public void setVpnConnectionId(String vpnConnectionId) { this.vpnConnectionId = vpnConnectionId; } /** *

* The ID of the Amazon Web Services Site-to-Site VPN connection. *

* * @return The ID of the Amazon Web Services Site-to-Site VPN connection. */ public String getVpnConnectionId() { return this.vpnConnectionId; } /** *

* The ID of the Amazon Web Services Site-to-Site VPN connection. *

* * @param vpnConnectionId * The ID of the Amazon Web Services Site-to-Site VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpnTunnelOptionsRequest withVpnConnectionId(String vpnConnectionId) { setVpnConnectionId(vpnConnectionId); return this; } /** *

* The external IP address of the VPN tunnel. *

* * @param vpnTunnelOutsideIpAddress * The external IP address of the VPN tunnel. */ public void setVpnTunnelOutsideIpAddress(String vpnTunnelOutsideIpAddress) { this.vpnTunnelOutsideIpAddress = vpnTunnelOutsideIpAddress; } /** *

* The external IP address of the VPN tunnel. *

* * @return The external IP address of the VPN tunnel. */ public String getVpnTunnelOutsideIpAddress() { return this.vpnTunnelOutsideIpAddress; } /** *

* The external IP address of the VPN tunnel. *

* * @param vpnTunnelOutsideIpAddress * The external IP address of the VPN tunnel. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpnTunnelOptionsRequest withVpnTunnelOutsideIpAddress(String vpnTunnelOutsideIpAddress) { setVpnTunnelOutsideIpAddress(vpnTunnelOutsideIpAddress); return this; } /** *

* The tunnel options to modify. *

* * @param tunnelOptions * The tunnel options to modify. */ public void setTunnelOptions(ModifyVpnTunnelOptionsSpecification tunnelOptions) { this.tunnelOptions = tunnelOptions; } /** *

* The tunnel options to modify. *

* * @return The tunnel options to modify. */ public ModifyVpnTunnelOptionsSpecification getTunnelOptions() { return this.tunnelOptions; } /** *

* The tunnel options to modify. *

* * @param tunnelOptions * The tunnel options to modify. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpnTunnelOptionsRequest withTunnelOptions(ModifyVpnTunnelOptionsSpecification tunnelOptions) { setTunnelOptions(tunnelOptions); return this; } /** *

* Choose whether or not to trigger immediate tunnel replacement. *

*

* Valid values: True | False *

* * @param skipTunnelReplacement * Choose whether or not to trigger immediate tunnel replacement.

*

* Valid values: True | False */ public void setSkipTunnelReplacement(Boolean skipTunnelReplacement) { this.skipTunnelReplacement = skipTunnelReplacement; } /** *

* Choose whether or not to trigger immediate tunnel replacement. *

*

* Valid values: True | False *

* * @return Choose whether or not to trigger immediate tunnel replacement.

*

* Valid values: True | False */ public Boolean getSkipTunnelReplacement() { return this.skipTunnelReplacement; } /** *

* Choose whether or not to trigger immediate tunnel replacement. *

*

* Valid values: True | False *

* * @param skipTunnelReplacement * Choose whether or not to trigger immediate tunnel replacement.

*

* Valid values: True | False * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpnTunnelOptionsRequest withSkipTunnelReplacement(Boolean skipTunnelReplacement) { setSkipTunnelReplacement(skipTunnelReplacement); return this; } /** *

* Choose whether or not to trigger immediate tunnel replacement. *

*

* Valid values: True | False *

* * @return Choose whether or not to trigger immediate tunnel replacement.

*

* Valid values: True | False */ public Boolean isSkipTunnelReplacement() { return this.skipTunnelReplacement; } /** * 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 ModifyVpnTunnelOptionsRequestMarshaller().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 (getVpnConnectionId() != null) sb.append("VpnConnectionId: ").append(getVpnConnectionId()).append(","); if (getVpnTunnelOutsideIpAddress() != null) sb.append("VpnTunnelOutsideIpAddress: ").append(getVpnTunnelOutsideIpAddress()).append(","); if (getTunnelOptions() != null) sb.append("TunnelOptions: ").append("***Sensitive Data Redacted***").append(","); if (getSkipTunnelReplacement() != null) sb.append("SkipTunnelReplacement: ").append(getSkipTunnelReplacement()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyVpnTunnelOptionsRequest == false) return false; ModifyVpnTunnelOptionsRequest other = (ModifyVpnTunnelOptionsRequest) obj; if (other.getVpnConnectionId() == null ^ this.getVpnConnectionId() == null) return false; if (other.getVpnConnectionId() != null && other.getVpnConnectionId().equals(this.getVpnConnectionId()) == false) return false; if (other.getVpnTunnelOutsideIpAddress() == null ^ this.getVpnTunnelOutsideIpAddress() == null) return false; if (other.getVpnTunnelOutsideIpAddress() != null && other.getVpnTunnelOutsideIpAddress().equals(this.getVpnTunnelOutsideIpAddress()) == false) return false; if (other.getTunnelOptions() == null ^ this.getTunnelOptions() == null) return false; if (other.getTunnelOptions() != null && other.getTunnelOptions().equals(this.getTunnelOptions()) == false) return false; if (other.getSkipTunnelReplacement() == null ^ this.getSkipTunnelReplacement() == null) return false; if (other.getSkipTunnelReplacement() != null && other.getSkipTunnelReplacement().equals(this.getSkipTunnelReplacement()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVpnConnectionId() == null) ? 0 : getVpnConnectionId().hashCode()); hashCode = prime * hashCode + ((getVpnTunnelOutsideIpAddress() == null) ? 0 : getVpnTunnelOutsideIpAddress().hashCode()); hashCode = prime * hashCode + ((getTunnelOptions() == null) ? 0 : getTunnelOptions().hashCode()); hashCode = prime * hashCode + ((getSkipTunnelReplacement() == null) ? 0 : getSkipTunnelReplacement().hashCode()); return hashCode; } @Override public ModifyVpnTunnelOptionsRequest clone() { return (ModifyVpnTunnelOptionsRequest) super.clone(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy