/* * 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.elasticmapreduce.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Details for a notebook execution. The details include information such as the unique ID and status of the notebook * execution. *

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

* The unique identifier of the notebook execution. *

*/ private String notebookExecutionId; /** *

* The unique identifier of the editor associated with the notebook execution. *

*/ private String editorId; /** *

* The name of the notebook execution. *

*/ private String notebookExecutionName; /** *

* The status of the notebook execution. *

* */ private String status; /** *

* The timestamp when notebook execution started. *

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

* The timestamp when notebook execution started. *

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

* The Amazon S3 location that stores the notebook execution input. *

*/ private NotebookS3LocationForOutput notebookS3Location; /** *

* The unique ID of the execution engine for the notebook execution. *

*/ private String executionEngineId; /** *

* The unique identifier of the notebook execution. *

* * @param notebookExecutionId * The unique identifier of the notebook execution. */ public void setNotebookExecutionId(String notebookExecutionId) { this.notebookExecutionId = notebookExecutionId; } /** *

* The unique identifier of the notebook execution. *

* * @return The unique identifier of the notebook execution. */ public String getNotebookExecutionId() { return this.notebookExecutionId; } /** *

* The unique identifier of the notebook execution. *

* * @param notebookExecutionId * The unique identifier of the notebook execution. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookExecutionSummary withNotebookExecutionId(String notebookExecutionId) { setNotebookExecutionId(notebookExecutionId); return this; } /** *

* The unique identifier of the editor associated with the notebook execution. *

* * @param editorId * The unique identifier of the editor associated with the notebook execution. */ public void setEditorId(String editorId) { this.editorId = editorId; } /** *

* The unique identifier of the editor associated with the notebook execution. *

* * @return The unique identifier of the editor associated with the notebook execution. */ public String getEditorId() { return this.editorId; } /** *

* The unique identifier of the editor associated with the notebook execution. *

* * @param editorId * The unique identifier of the editor associated with the notebook execution. * @return Returns a reference to this object so that method calls can be chained together. */ public NotebookExecutionSummary withEditorId(String editorId) { setEditorId(editorId); return this; } /** *

* The name of the notebook execution. *

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

* The name of the notebook execution. *

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

* The name of the notebook execution. *

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

* The status of the notebook execution. *

* * * @param status * The status of the notebook execution.

*