aws.emr.list_notebook_executions
Example SQL Queries
SELECT * FROMaws.emr.list_notebook_executions;Description
Provides summaries of all notebook executions. You can filter the list based on multiple criteria such as status, time range, and editor id. Returns a maximum of 50 notebook executions and a marker to track the paging of a longer notebook execution list across multiple ListNotebookExecutions calls.
Table Definition
| Column Name | Column Data Type |
|---|---|
| editor_id Input Column The unique identifier of the editor associated with the notebook execution. | VARCHAR |
| execution_engine_id Input Column The unique ID of the execution engine for the notebook execution. | VARCHAR |
| from Input Column The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago. | TIMESTAMP_S |
| status Input Column The status of the notebook execution.
| VARCHAR |
| to Input Column The end of time range filter for listing notebook executions. The default is the current timestamp. | TIMESTAMP_S |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| end_time The timestamp when notebook execution started. | TIMESTAMP_S |
| notebook_execution_id The unique identifier of the notebook execution. | VARCHAR |
| notebook_execution_name The name of the notebook execution. | VARCHAR |
| notebook_s3_location The Amazon S3 location that stores the notebook execution input. | STRUCT( |
Show child fields
| |
| start_time The timestamp when notebook execution started. | TIMESTAMP_S |