interface NotebookInstanceLifecycleHookProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnNotebookInstanceLifecycleConfigPropsMixin_NotebookInstanceLifecycleHookProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnNotebookInstanceLifecycleConfigPropsMixin » NotebookInstanceLifecycleHookProperty |
Specifies the notebook instance lifecycle configuration script.
Each lifecycle configuration script has a limit of 16384 characters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const notebookInstanceLifecycleHookProperty: sagemaker_mixins.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty = {
content: 'content',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | A base64-encoded string that contains a shell script for a notebook instance lifecycle configuration. |
content?
Type:
string
(optional)
A base64-encoded string that contains a shell script for a notebook instance lifecycle configuration.

.NET
Go
Java
Python
TypeScript