com.amazonaws.services.ec2.model.GetVpnConnectionDeviceSampleConfigurationRequest 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.GetVpnConnectionDeviceSampleConfigurationRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetVpnConnectionDeviceSampleConfigurationRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
DryRunSupportedRequest {
/**
*
* The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample configuration.
*
*/
private String vpnConnectionId;
/**
*
* Device identifier provided by the GetVpnConnectionDeviceTypes
API.
*
*/
private String vpnConnectionDeviceTypeId;
/**
*
* The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one
* of the following versions: ikev1
or ikev2
.
*
*/
private String internetKeyExchangeVersion;
/**
*
* The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample configuration.
*
*
* @param vpnConnectionId
* The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample
* configuration.
*/
public void setVpnConnectionId(String vpnConnectionId) {
this.vpnConnectionId = vpnConnectionId;
}
/**
*
* The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample configuration.
*
*
* @return The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample
* configuration.
*/
public String getVpnConnectionId() {
return this.vpnConnectionId;
}
/**
*
* The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample configuration.
*
*
* @param vpnConnectionId
* The VpnConnectionId
specifies the Site-to-Site VPN connection used for the sample
* configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVpnConnectionDeviceSampleConfigurationRequest withVpnConnectionId(String vpnConnectionId) {
setVpnConnectionId(vpnConnectionId);
return this;
}
/**
*
* Device identifier provided by the GetVpnConnectionDeviceTypes
API.
*
*
* @param vpnConnectionDeviceTypeId
* Device identifier provided by the GetVpnConnectionDeviceTypes
API.
*/
public void setVpnConnectionDeviceTypeId(String vpnConnectionDeviceTypeId) {
this.vpnConnectionDeviceTypeId = vpnConnectionDeviceTypeId;
}
/**
*
* Device identifier provided by the GetVpnConnectionDeviceTypes
API.
*
*
* @return Device identifier provided by the GetVpnConnectionDeviceTypes
API.
*/
public String getVpnConnectionDeviceTypeId() {
return this.vpnConnectionDeviceTypeId;
}
/**
*
* Device identifier provided by the GetVpnConnectionDeviceTypes
API.
*
*
* @param vpnConnectionDeviceTypeId
* Device identifier provided by the GetVpnConnectionDeviceTypes
API.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVpnConnectionDeviceSampleConfigurationRequest withVpnConnectionDeviceTypeId(String vpnConnectionDeviceTypeId) {
setVpnConnectionDeviceTypeId(vpnConnectionDeviceTypeId);
return this;
}
/**
*
* The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one
* of the following versions: ikev1
or ikev2
.
*
*
* @param internetKeyExchangeVersion
* The IKE version to be used in the sample configuration file for your customer gateway device. You can
* specify one of the following versions: ikev1
or ikev2
.
*/
public void setInternetKeyExchangeVersion(String internetKeyExchangeVersion) {
this.internetKeyExchangeVersion = internetKeyExchangeVersion;
}
/**
*
* The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one
* of the following versions: ikev1
or ikev2
.
*
*
* @return The IKE version to be used in the sample configuration file for your customer gateway device. You can
* specify one of the following versions: ikev1
or ikev2
.
*/
public String getInternetKeyExchangeVersion() {
return this.internetKeyExchangeVersion;
}
/**
*
* The IKE version to be used in the sample configuration file for your customer gateway device. You can specify one
* of the following versions: ikev1
or ikev2
.
*
*
* @param internetKeyExchangeVersion
* The IKE version to be used in the sample configuration file for your customer gateway device. You can
* specify one of the following versions: ikev1
or ikev2
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetVpnConnectionDeviceSampleConfigurationRequest withInternetKeyExchangeVersion(String internetKeyExchangeVersion) {
setInternetKeyExchangeVersion(internetKeyExchangeVersion);
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 GetVpnConnectionDeviceSampleConfigurationRequestMarshaller().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 (getVpnConnectionDeviceTypeId() != null)
sb.append("VpnConnectionDeviceTypeId: ").append(getVpnConnectionDeviceTypeId()).append(",");
if (getInternetKeyExchangeVersion() != null)
sb.append("InternetKeyExchangeVersion: ").append(getInternetKeyExchangeVersion());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetVpnConnectionDeviceSampleConfigurationRequest == false)
return false;
GetVpnConnectionDeviceSampleConfigurationRequest other = (GetVpnConnectionDeviceSampleConfigurationRequest) obj;
if (other.getVpnConnectionId() == null ^ this.getVpnConnectionId() == null)
return false;
if (other.getVpnConnectionId() != null && other.getVpnConnectionId().equals(this.getVpnConnectionId()) == false)
return false;
if (other.getVpnConnectionDeviceTypeId() == null ^ this.getVpnConnectionDeviceTypeId() == null)
return false;
if (other.getVpnConnectionDeviceTypeId() != null && other.getVpnConnectionDeviceTypeId().equals(this.getVpnConnectionDeviceTypeId()) == false)
return false;
if (other.getInternetKeyExchangeVersion() == null ^ this.getInternetKeyExchangeVersion() == null)
return false;
if (other.getInternetKeyExchangeVersion() != null && other.getInternetKeyExchangeVersion().equals(this.getInternetKeyExchangeVersion()) == 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 + ((getVpnConnectionDeviceTypeId() == null) ? 0 : getVpnConnectionDeviceTypeId().hashCode());
hashCode = prime * hashCode + ((getInternetKeyExchangeVersion() == null) ? 0 : getInternetKeyExchangeVersion().hashCode());
return hashCode;
}
@Override
public GetVpnConnectionDeviceSampleConfigurationRequest clone() {
return (GetVpnConnectionDeviceSampleConfigurationRequest) super.clone();
}
}