Export Notebook
| athena_export_notebook | R Documentation | 
Exports the specified notebook and its metadata¶
Description¶
Exports the specified notebook and its metadata.
Usage¶
athena_export_notebook(NotebookId)
Arguments¶
NotebookId | 
[required] The ID of the notebook to export.  | 
Value¶
A list with the following syntax:
list(
  NotebookMetadata = list(
    NotebookId = "string",
    Name = "string",
    WorkGroup = "string",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    Type = "IPYNB",
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    )
  ),
  Payload = "string"
)
Request syntax¶
svc$export_notebook(
  NotebookId = "string"
)