Get Notebook Export
| datazone_get_notebook_export | R Documentation |
Gets the details of a notebook export in Amazon SageMaker Unified Studio¶
Description¶
Gets the details of a notebook export in Amazon SageMaker Unified Studio.
Usage¶
datazone_get_notebook_export(domainIdentifier, identifier)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon SageMaker Unified Studio domain in which the notebook export exists. |
identifier |
[required] The identifier of the notebook export. |
Value¶
A list with the following syntax:
list(
id = "string",
domainId = "string",
owningProjectId = "string",
notebookId = "string",
fileFormat = "PDF"|"IPYNB",
status = "IN_PROGRESS"|"SUCCEEDED"|"FAILED",
outputLocation = list(
s3 = list(
uri = "string"
)
),
error = list(
message = "string"
),
completedAt = as.POSIXct(
"2015-01-01"
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string"
)
Request syntax¶
svc$get_notebook_export(
domainIdentifier = "string",
identifier = "string"
)