Skip to content

Create Presigned Notebook Url

athena_create_presigned_notebook_url R Documentation

Gets an authentication token and the URL at which the notebook can be accessed

Description

Gets an authentication token and the URL at which the notebook can be accessed. During programmatic access, create_presigned_notebook_url must be called every 10 minutes to refresh the authentication token. For information about granting programmatic access, see Grant programmatic access.

Usage

athena_create_presigned_notebook_url(SessionId)

Arguments

SessionId

[required] The session ID.

Value

A list with the following syntax:

list(
  NotebookUrl = "string",
  AuthToken = "string",
  AuthTokenExpirationTime = 123
)

Request syntax

svc$create_presigned_notebook_url(
  SessionId = "string"
)