Stop Notebook Run
| datazone_stop_notebook_run | R Documentation |
Stops a running notebook run in Amazon SageMaker Unified Studio¶
Description¶
Stops a running notebook run in Amazon SageMaker Unified Studio.
Usage¶
datazone_stop_notebook_run(domainIdentifier, identifier, clientToken)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon SageMaker Unified Studio domain in which the notebook run is stopped. |
identifier |
[required] The identifier of the notebook run to stop. |
clientToken |
A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided. |
Value¶
A list with the following syntax:
list(
id = "string",
domainId = "string",
owningProjectId = "string",
status = "QUEUED"|"STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"
)
Request syntax¶
svc$stop_notebook_run(
domainIdentifier = "string",
identifier = "string",
clientToken = "string"
)