interface NotebookInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.NotebookInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#NotebookInstanceReference |
Java | software.amazon.awscdk.interfaces.sagemaker.NotebookInstanceReference |
Python | aws_cdk.interfaces.aws_sagemaker.NotebookInstanceReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » NotebookInstanceReference |
A reference to a NotebookInstance resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as interfaces_sagemaker } from 'aws-cdk-lib/interfaces';
const notebookInstanceReference: interfaces_sagemaker.NotebookInstanceReference = {
notebookInstanceId: 'notebookInstanceId',
notebookInstanceName: 'notebookInstanceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| notebook | string | The Id of the NotebookInstance resource. |
| notebook | string | The NotebookInstanceName of the NotebookInstance resource. |
notebookInstanceId
Type:
string
The Id of the NotebookInstance resource.
notebookInstanceName
Type:
string
The NotebookInstanceName of the NotebookInstance resource.

.NET
Go
Java
Python
TypeScript