Interface CfnNotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHookProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHookProperty.Jsii$Proxy
Enclosing class:
CfnNotebookInstanceLifecycleConfig

@Stability(Stable) public static interface CfnNotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHookProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 NotebookInstanceLifecycleHookProperty notebookInstanceLifecycleHookProperty = NotebookInstanceLifecycleHookProperty.builder()
         .content("content")
         .build();
 

See Also: