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

com.amazonaws.services.athena.model.SessionSummary Maven / Gradle / Ivy

Go to download

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

The 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.athena.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains summary information about a session. *

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

* The session ID. *

*/ private String sessionId; /** *

* The session description. *

*/ private String description; /** *

* The engine version used by the session (for example, PySpark engine version 3). *

*/ private EngineVersion engineVersion; /** *

* The notebook version. *

*/ private String notebookVersion; /** *

* Contains information about the session status. *

*/ private SessionStatus status; /** *

* The session ID. *

* * @param sessionId * The session ID. */ public void setSessionId(String sessionId) { this.sessionId = sessionId; } /** *

* The session ID. *

* * @return The session ID. */ public String getSessionId() { return this.sessionId; } /** *

* The session ID. *

* * @param sessionId * The session ID. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionSummary withSessionId(String sessionId) { setSessionId(sessionId); return this; } /** *

* The session description. *

* * @param description * The session description. */ public void setDescription(String description) { this.description = description; } /** *

* The session description. *

* * @return The session description. */ public String getDescription() { return this.description; } /** *

* The session description. *

* * @param description * The session description. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionSummary withDescription(String description) { setDescription(description); return this; } /** *

* The engine version used by the session (for example, PySpark engine version 3). *

* * @param engineVersion * The engine version used by the session (for example, PySpark engine version 3). */ public void setEngineVersion(EngineVersion engineVersion) { this.engineVersion = engineVersion; } /** *

* The engine version used by the session (for example, PySpark engine version 3). *

* * @return The engine version used by the session (for example, PySpark engine version 3). */ public EngineVersion getEngineVersion() { return this.engineVersion; } /** *

* The engine version used by the session (for example, PySpark engine version 3). *

* * @param engineVersion * The engine version used by the session (for example, PySpark engine version 3). * @return Returns a reference to this object so that method calls can be chained together. */ public SessionSummary withEngineVersion(EngineVersion engineVersion) { setEngineVersion(engineVersion); return this; } /** *

* The notebook version. *

* * @param notebookVersion * The notebook version. */ public void setNotebookVersion(String notebookVersion) { this.notebookVersion = notebookVersion; } /** *

* The notebook version. *

* * @return The notebook version. */ public String getNotebookVersion() { return this.notebookVersion; } /** *

* The notebook version. *

* * @param notebookVersion * The notebook version. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionSummary withNotebookVersion(String notebookVersion) { setNotebookVersion(notebookVersion); return this; } /** *

* Contains information about the session status. *

* * @param status * Contains information about the session status. */ public void setStatus(SessionStatus status) { this.status = status; } /** *

* Contains information about the session status. *

* * @return Contains information about the session status. */ public SessionStatus getStatus() { return this.status; } /** *

* Contains information about the session status. *

* * @param status * Contains information about the session status. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionSummary withStatus(SessionStatus status) { setStatus(status); 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 (getSessionId() != null) sb.append("SessionId: ").append(getSessionId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getEngineVersion() != null) sb.append("EngineVersion: ").append(getEngineVersion()).append(","); if (getNotebookVersion() != null) sb.append("NotebookVersion: ").append(getNotebookVersion()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SessionSummary == false) return false; SessionSummary other = (SessionSummary) obj; if (other.getSessionId() == null ^ this.getSessionId() == null) return false; if (other.getSessionId() != null && other.getSessionId().equals(this.getSessionId()) == 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.getEngineVersion() == null ^ this.getEngineVersion() == null) return false; if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == false) return false; if (other.getNotebookVersion() == null ^ this.getNotebookVersion() == null) return false; if (other.getNotebookVersion() != null && other.getNotebookVersion().equals(this.getNotebookVersion()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSessionId() == null) ? 0 : getSessionId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode()); hashCode = prime * hashCode + ((getNotebookVersion() == null) ? 0 : getNotebookVersion().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public SessionSummary clone() { try { return (SessionSummary) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.athena.model.transform.SessionSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy