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

com.amazonaws.services.iotsecuretunneling.model.OpenTunnelResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS IoT Secure Tunneling module holds the client classes that are used for communicating with AWS IoT Secure Tunneling Service

There is a newer version: 1.12.778
Show newest version
/*
 * 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.iotsecuretunneling.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class OpenTunnelResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {

    /**
     * 

* A unique alpha-numeric tunnel ID. *

*/ private String tunnelId; /** *

* The Amazon Resource Name for the tunnel. *

*/ private String tunnelArn; /** *

* The access token the source local proxy uses to connect to IoT Secure Tunneling. *

*/ private String sourceAccessToken; /** *

* The access token the destination local proxy uses to connect to IoT Secure Tunneling. *

*/ private String destinationAccessToken; /** *

* A unique alpha-numeric tunnel ID. *

* * @param tunnelId * A unique alpha-numeric tunnel ID. */ public void setTunnelId(String tunnelId) { this.tunnelId = tunnelId; } /** *

* A unique alpha-numeric tunnel ID. *

* * @return A unique alpha-numeric tunnel ID. */ public String getTunnelId() { return this.tunnelId; } /** *

* A unique alpha-numeric tunnel ID. *

* * @param tunnelId * A unique alpha-numeric tunnel ID. * @return Returns a reference to this object so that method calls can be chained together. */ public OpenTunnelResult withTunnelId(String tunnelId) { setTunnelId(tunnelId); return this; } /** *

* The Amazon Resource Name for the tunnel. *

* * @param tunnelArn * The Amazon Resource Name for the tunnel. */ public void setTunnelArn(String tunnelArn) { this.tunnelArn = tunnelArn; } /** *

* The Amazon Resource Name for the tunnel. *

* * @return The Amazon Resource Name for the tunnel. */ public String getTunnelArn() { return this.tunnelArn; } /** *

* The Amazon Resource Name for the tunnel. *

* * @param tunnelArn * The Amazon Resource Name for the tunnel. * @return Returns a reference to this object so that method calls can be chained together. */ public OpenTunnelResult withTunnelArn(String tunnelArn) { setTunnelArn(tunnelArn); return this; } /** *

* The access token the source local proxy uses to connect to IoT Secure Tunneling. *

* * @param sourceAccessToken * The access token the source local proxy uses to connect to IoT Secure Tunneling. */ public void setSourceAccessToken(String sourceAccessToken) { this.sourceAccessToken = sourceAccessToken; } /** *

* The access token the source local proxy uses to connect to IoT Secure Tunneling. *

* * @return The access token the source local proxy uses to connect to IoT Secure Tunneling. */ public String getSourceAccessToken() { return this.sourceAccessToken; } /** *

* The access token the source local proxy uses to connect to IoT Secure Tunneling. *

* * @param sourceAccessToken * The access token the source local proxy uses to connect to IoT Secure Tunneling. * @return Returns a reference to this object so that method calls can be chained together. */ public OpenTunnelResult withSourceAccessToken(String sourceAccessToken) { setSourceAccessToken(sourceAccessToken); return this; } /** *

* The access token the destination local proxy uses to connect to IoT Secure Tunneling. *

* * @param destinationAccessToken * The access token the destination local proxy uses to connect to IoT Secure Tunneling. */ public void setDestinationAccessToken(String destinationAccessToken) { this.destinationAccessToken = destinationAccessToken; } /** *

* The access token the destination local proxy uses to connect to IoT Secure Tunneling. *

* * @return The access token the destination local proxy uses to connect to IoT Secure Tunneling. */ public String getDestinationAccessToken() { return this.destinationAccessToken; } /** *

* The access token the destination local proxy uses to connect to IoT Secure Tunneling. *

* * @param destinationAccessToken * The access token the destination local proxy uses to connect to IoT Secure Tunneling. * @return Returns a reference to this object so that method calls can be chained together. */ public OpenTunnelResult withDestinationAccessToken(String destinationAccessToken) { setDestinationAccessToken(destinationAccessToken); return this; } /** * 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 (getTunnelId() != null) sb.append("TunnelId: ").append(getTunnelId()).append(","); if (getTunnelArn() != null) sb.append("TunnelArn: ").append(getTunnelArn()).append(","); if (getSourceAccessToken() != null) sb.append("SourceAccessToken: ").append("***Sensitive Data Redacted***").append(","); if (getDestinationAccessToken() != null) sb.append("DestinationAccessToken: ").append("***Sensitive Data Redacted***"); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof OpenTunnelResult == false) return false; OpenTunnelResult other = (OpenTunnelResult) obj; if (other.getTunnelId() == null ^ this.getTunnelId() == null) return false; if (other.getTunnelId() != null && other.getTunnelId().equals(this.getTunnelId()) == false) return false; if (other.getTunnelArn() == null ^ this.getTunnelArn() == null) return false; if (other.getTunnelArn() != null && other.getTunnelArn().equals(this.getTunnelArn()) == false) return false; if (other.getSourceAccessToken() == null ^ this.getSourceAccessToken() == null) return false; if (other.getSourceAccessToken() != null && other.getSourceAccessToken().equals(this.getSourceAccessToken()) == false) return false; if (other.getDestinationAccessToken() == null ^ this.getDestinationAccessToken() == null) return false; if (other.getDestinationAccessToken() != null && other.getDestinationAccessToken().equals(this.getDestinationAccessToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTunnelId() == null) ? 0 : getTunnelId().hashCode()); hashCode = prime * hashCode + ((getTunnelArn() == null) ? 0 : getTunnelArn().hashCode()); hashCode = prime * hashCode + ((getSourceAccessToken() == null) ? 0 : getSourceAccessToken().hashCode()); hashCode = prime * hashCode + ((getDestinationAccessToken() == null) ? 0 : getDestinationAccessToken().hashCode()); return hashCode; } @Override public OpenTunnelResult clone() { try { return (OpenTunnelResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy