Class: Aws::EMR::Types::ListNotebookExecutionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListNotebookExecutionsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#editor_id ⇒ String
The unique ID of the editor associated with the notebook execution.
-
#execution_engine_id ⇒ String
The unique ID of the execution engine.
-
#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.
4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/aws-sdk-emr/types.rb', line 4422 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker, :execution_engine_id) SENSITIVE = [] include Aws::Structure end |
#execution_engine_id ⇒ String
The unique ID of the execution engine.
4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/aws-sdk-emr/types.rb', line 4422 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker, :execution_engine_id) SENSITIVE = [] include Aws::Structure end |
#from ⇒ Time
The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/aws-sdk-emr/types.rb', line 4422 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker, :execution_engine_id) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
The pagination token, returned by a previous ListNotebookExecutions call, that indicates the start of the list for this ListNotebookExecutions call.
4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/aws-sdk-emr/types.rb', line 4422 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker, :execution_engine_id) SENSITIVE = [] include Aws::Structure end |
#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.
4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/aws-sdk-emr/types.rb', line 4422 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker, :execution_engine_id) SENSITIVE = [] include Aws::Structure end |
#to ⇒ Time
The end of time range filter for listing notebook executions. The default is the current timestamp.
4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 |
# File 'lib/aws-sdk-emr/types.rb', line 4422 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker, :execution_engine_id) SENSITIVE = [] include Aws::Structure end |