interface NotebookInstanceLifecycleHookProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnNotebookInstanceLifecycleConfigPropsMixin_NotebookInstanceLifecycleHookProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnNotebookInstanceLifecycleConfigPropsMixin.NotebookInstanceLifecycleHookProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const notebookInstanceLifecycleHookProperty: sagemaker.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