Describe Notebook Execution
emr_describe_notebook_execution | R Documentation |
Provides details of a notebook execution¶
Description¶
Provides details of a notebook execution.
Usage¶
Arguments¶
NotebookExecutionId
[required] The unique identifier of the notebook execution.
Value¶
A list with the following syntax:
list(
NotebookExecution = list(
NotebookExecutionId = "string",
EditorId = "string",
ExecutionEngine = list(
Id = "string",
Type = "EMR",
MasterInstanceSecurityGroupId = "string",
ExecutionRoleArn = "string"
),
NotebookExecutionName = "string",
NotebookParams = "string",
Status = "START_PENDING"|"STARTING"|"RUNNING"|"FINISHING"|"FINISHED"|"FAILING"|"FAILED"|"STOP_PENDING"|"STOPPING"|"STOPPED",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
Arn = "string",
OutputNotebookURI = "string",
LastStateChangeReason = "string",
NotebookInstanceSecurityGroupId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
NotebookS3Location = list(
Bucket = "string",
Key = "string"
),
OutputNotebookS3Location = list(
Bucket = "string",
Key = "string"
),
OutputNotebookFormat = "HTML",
EnvironmentVariables = list(
"string"
)
)
)