You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::EMR::Types::ListNotebookExecutionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListNotebookExecutionsInput
- Defined in:
- (unknown)
Overview
When passing ListNotebookExecutionsInput as input to an Aws::Client method, you can use a vanilla Hash:
{
editor_id: "XmlStringMaxLen256",
status: "START_PENDING", # accepts START_PENDING, STARTING, RUNNING, FINISHING, FINISHED, FAILING, FAILED, STOP_PENDING, STOPPING, STOPPED
from: Time.now,
to: Time.now,
marker: "Marker",
}
Instance Attribute Summary collapse
-
#editor_id ⇒ String
The unique ID of the editor associated with the notebook execution.
-
#from ⇒ Time
The beginning of time range filter for listing notebook executions.
-
#marker ⇒ String
The pagination token, returned by a previous
ListNotebookExecutionscall, that indicates the start of the list for thisListNotebookExecutionscall. -
#status ⇒ String
The status filter for listing notebook executions.
-
#to ⇒ Time
The end of time range filter for listing notebook executions.
Instance Attribute Details
#editor_id ⇒ String
The unique ID of the editor associated with the notebook execution.
#from ⇒ Time
The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
#marker ⇒ String
The pagination token, returned by a previous ListNotebookExecutions
call, that indicates the start of the list for this
ListNotebookExecutions call.
#status ⇒ String
The status filter for listing notebook executions.
START_PENDINGindicates that the cluster has received the execution request but execution has not begun.STARTINGindicates that the execution is starting on the cluster.RUNNINGindicates that the execution is being processed by the cluster.FINISHINGindicates that execution processing is in the final stages.FINISHEDindicates that the execution has completed without error.FAILINGindicates that the execution is failing and will not finish successfully.FAILEDindicates that the execution failed.STOP_PENDINGindicates that the cluster has received aStopNotebookExecutionrequest and the stop is pending.STOPPINGindicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecutionrequest.STOPPEDindicates that the execution stopped because of aStopNotebookExecutionrequest.Possible values:
- START_PENDING
- STARTING
- RUNNING
- FINISHING
- FINISHED
- FAILING
- FAILED
- STOP_PENDING
- STOPPING
- STOPPED
#to ⇒ Time
The end of time range filter for listing notebook executions. The default is the current timestamp.