List Notebooks
| datazone_list_notebooks | R Documentation |
Lists notebooks in Amazon SageMaker Unified Studio¶
Description¶
Lists notebooks in Amazon SageMaker Unified Studio.
Usage¶
datazone_list_notebooks(domainIdentifier, owningProjectIdentifier,
maxResults, sortOrder, sortBy, status, nextToken)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon SageMaker Unified Studio domain in which to list notebooks. |
owningProjectIdentifier |
[required] The identifier of the project that owns the notebooks. |
maxResults |
The maximum number of notebooks to return in a single call. When
the number of notebooks exceeds the value of |
sortOrder |
The sort order for the results. |
sortBy |
The field to sort the results by. |
status |
The status to filter notebooks by. |
nextToken |
When the number of notebooks is greater than the default value
for the |
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
name = "string",
owningProjectId = "string",
domainId = "string",
status = "ACTIVE"|"ARCHIVED",
description = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
updatedAt = as.POSIXct(
"2015-01-01"
),
updatedBy = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_notebooks(
domainIdentifier = "string",
owningProjectIdentifier = "string",
maxResults = 123,
sortOrder = "ASCENDING"|"DESCENDING",
sortBy = "CREATED_AT"|"UPDATED_AT",
status = "ACTIVE"|"ARCHIVED",
nextToken = "string"
)