interface NotebookInstanceLifecycleConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.NotebookInstanceLifecycleConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#NotebookInstanceLifecycleConfigReference |
Java | software.amazon.awscdk.interfaces.sagemaker.NotebookInstanceLifecycleConfigReference |
Python | aws_cdk.interfaces.aws_sagemaker.NotebookInstanceLifecycleConfigReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » NotebookInstanceLifecycleConfigReference |
A reference to a NotebookInstanceLifecycleConfig 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 notebookInstanceLifecycleConfigReference: interfaces_sagemaker.NotebookInstanceLifecycleConfigReference = {
notebookInstanceLifecycleConfigId: 'notebookInstanceLifecycleConfigId',
notebookInstanceLifecycleConfigName: 'notebookInstanceLifecycleConfigName',
};
Properties
| Name | Type | Description |
|---|---|---|
| notebook | string | The Id of the NotebookInstanceLifecycleConfig resource. |
| notebook | string | The NotebookInstanceLifecycleConfigName of the NotebookInstanceLifecycleConfig resource. |
notebookInstanceLifecycleConfigId
Type:
string
The Id of the NotebookInstanceLifecycleConfig resource.
notebookInstanceLifecycleConfigName
Type:
string
The NotebookInstanceLifecycleConfigName of the NotebookInstanceLifecycleConfig resource.

.NET
Go
Java
Python
TypeScript