Skip to main content

notebook_exports

Creates, updates, deletes, gets or lists a notebook_exports resource.

Overview

Namenotebook_exports
TypeResource
Idaws.datazone.notebook_exports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe identifier of the notebook export. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>)
completed_atstring (date-time)The timestamp of when the notebook export completed.
created_atstring (date-time)The timestamp of when the notebook export was started.
created_bystringThe identifier of the user who started the notebook export.
domain_idstringThe identifier of the Amazon SageMaker Unified Studio domain. (pattern: <code>dzd[-][a-zA-Z0-9-]{1,36}</code>)
errorobjectThe error details if the notebook export failed.
file_formatstringThe file format of the notebook export. (PDF, IPYNB)
notebook_idstringThe identifier of the notebook. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>)
output_locationobjectThe output location of the exported notebook in Amazon Simple Storage Service.
owning_project_idstringThe identifier of the project that owns the notebook. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>)
statusstringThe status of the notebook export. (IN_PROGRESS, SUCCEEDED, FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_notebook_exportselectdomain_identifier, identifier, regionGets the details of a notebook export in Amazon SageMaker Unified Studio.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
domain_identifierstringThe identifier of the Amazon SageMaker Unified Studio domain in which the notebook export exists.
identifierstringThe identifier of the notebook export.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the details of a notebook export in Amazon SageMaker Unified Studio.

SELECT
id,
completed_at,
created_at,
created_by,
domain_id,
error,
file_format,
notebook_id,
output_location,
owning_project_id,
status
FROM aws.datazone.notebook_exports
WHERE domain_identifier = '{{ domain_identifier }}' -- required
AND identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;