Class: Aws::EMR::Types::ListNotebookExecutionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListNotebookExecutionsInput
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
When making an API call, you may pass ListNotebookExecutionsInput data as a 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",
}
Constant Summary collapse
- SENSITIVE =
[]
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
ListNotebookExecutions
call, that indicates the start of the list for thisListNotebookExecutions
call. -
#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.
4903 4904 4905 4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4903 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker) 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.
4903 4904 4905 4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4903 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker) 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.
4903 4904 4905 4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4903 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status filter for listing notebook executions.
START_PENDING
indicates that the cluster has received the execution request but execution has not begun.STARTING
indicates that the execution is starting on the cluster.RUNNING
indicates that the execution is being processed by the cluster.FINISHING
indicates that execution processing is in the final stages.FINISHED
indicates that the execution has completed without error.FAILING
indicates that the execution is failing and will not finish successfully.FAILED
indicates that the execution failed.STOP_PENDING
indicates that the cluster has received aStopNotebookExecution
request and the stop is pending.STOPPING
indicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecution
request.STOPPED
indicates that the execution stopped because of aStopNotebookExecution
request.
4903 4904 4905 4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4903 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker) SENSITIVE = [] include Aws::Structure end |
#to ⇒ Time
The end of time range filter for listing notebook executions. The default is the current timestamp.
4903 4904 4905 4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4903 class ListNotebookExecutionsInput < Struct.new( :editor_id, :status, :from, :to, :marker) SENSITIVE = [] include Aws::Structure end |