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

com.amazonaws.services.athena.model.NotebookMetadata 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 metadata for notebook, including the notebook name, ID, workgroup, and time created. *

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

* The notebook ID. *

*/ private String notebookId; /** *

* The name of the notebook. *

*/ private String name; /** *

* The name of the Spark enabled workgroup to which the notebook belongs. *

*/ private String workGroup; /** *

* The time when the notebook was created. *

*/ private java.util.Date creationTime; /** *

* The type of notebook. Currently, the only valid type is IPYNB. *

*/ private String type; /** *

* The time when the notebook was last modified. *

*/ private java.util.Date lastModifiedTime; /** *

* The notebook ID. *

* * @param notebookId * The notebook ID. */ public void setNotebookId(String notebookId) { this.notebookId = notebookId; } /** *

* The notebook ID. *

* * @return The notebook ID. */ public String getNotebookId() { return this.notebookId; } /** *

* The notebook ID. *

* * @param notebookId * The notebook ID. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookMetadata withNotebookId(String notebookId) { setNotebookId(notebookId); return this; } /** *

* The name of the notebook. *

* * @param name * The name of the notebook. */ public void setName(String name) { this.name = name; } /** *

* The name of the notebook. *

* * @return The name of the notebook. */ public String getName() { return this.name; } /** *

* The name of the notebook. *

* * @param name * The name of the notebook. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookMetadata withName(String name) { setName(name); return this; } /** *

* The name of the Spark enabled workgroup to which the notebook belongs. *

* * @param workGroup * The name of the Spark enabled workgroup to which the notebook belongs. */ public void setWorkGroup(String workGroup) { this.workGroup = workGroup; } /** *

* The name of the Spark enabled workgroup to which the notebook belongs. *

* * @return The name of the Spark enabled workgroup to which the notebook belongs. */ public String getWorkGroup() { return this.workGroup; } /** *

* The name of the Spark enabled workgroup to which the notebook belongs. *

* * @param workGroup * The name of the Spark enabled workgroup to which the notebook belongs. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookMetadata withWorkGroup(String workGroup) { setWorkGroup(workGroup); return this; } /** *

* The time when the notebook was created. *

* * @param creationTime * The time when the notebook was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* The time when the notebook was created. *

* * @return The time when the notebook was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* The time when the notebook was created. *

* * @param creationTime * The time when the notebook was created. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookMetadata withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* The type of notebook. Currently, the only valid type is IPYNB. *

* * @param type * The type of notebook. Currently, the only valid type is IPYNB. * @see NotebookType */ public void setType(String type) { this.type = type; } /** *

* The type of notebook. Currently, the only valid type is IPYNB. *

* * @return The type of notebook. Currently, the only valid type is IPYNB. * @see NotebookType */ public String getType() { return this.type; } /** *

* The type of notebook. Currently, the only valid type is IPYNB. *

* * @param type * The type of notebook. Currently, the only valid type is IPYNB. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookType */ public NotebookMetadata withType(String type) { setType(type); return this; } /** *

* The type of notebook. Currently, the only valid type is IPYNB. *

* * @param type * The type of notebook. Currently, the only valid type is IPYNB. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookType */ public NotebookMetadata withType(NotebookType type) { this.type = type.toString(); return this; } /** *

* The time when the notebook was last modified. *

* * @param lastModifiedTime * The time when the notebook was last modified. */ public void setLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } /** *

* The time when the notebook was last modified. *

* * @return The time when the notebook was last modified. */ public java.util.Date getLastModifiedTime() { return this.lastModifiedTime; } /** *

* The time when the notebook was last modified. *

* * @param lastModifiedTime * The time when the notebook was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookMetadata withLastModifiedTime(java.util.Date lastModifiedTime) { setLastModifiedTime(lastModifiedTime); 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 (getNotebookId() != null) sb.append("NotebookId: ").append(getNotebookId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getWorkGroup() != null) sb.append("WorkGroup: ").append(getWorkGroup()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getLastModifiedTime() != null) sb.append("LastModifiedTime: ").append(getLastModifiedTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof NotebookMetadata == false) return false; NotebookMetadata other = (NotebookMetadata) obj; if (other.getNotebookId() == null ^ this.getNotebookId() == null) return false; if (other.getNotebookId() != null && other.getNotebookId().equals(this.getNotebookId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getWorkGroup() == null ^ this.getWorkGroup() == null) return false; if (other.getWorkGroup() != null && other.getWorkGroup().equals(this.getWorkGroup()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null) return false; if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getNotebookId() == null) ? 0 : getNotebookId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getWorkGroup() == null) ? 0 : getWorkGroup().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode()); return hashCode; } @Override public NotebookMetadata clone() { try { return (NotebookMetadata) 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.NotebookMetadataMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy