Skip to content

Get Notebook Metadata

athena_get_notebook_metadata R Documentation

Retrieves notebook metadata for the specified notebook ID

Description

Retrieves notebook metadata for the specified notebook ID.

Usage

athena_get_notebook_metadata(NotebookId)

Arguments

NotebookId

[required] The ID of the notebook whose metadata is to be retrieved.

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"
    )
  )
)

Request syntax

svc$get_notebook_metadata(
  NotebookId = "string"
)