Class: Aws::SageMaker::Types::UpdateNotebookInstanceLifecycleConfigInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::UpdateNotebookInstanceLifecycleConfigInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass UpdateNotebookInstanceLifecycleConfigInput data as a hash:
{
notebook_instance_lifecycle_config_name: "NotebookInstanceLifecycleConfigName", # required
on_create: [
{
content: "NotebookInstanceLifecycleConfigContent",
},
],
on_start: [
{
content: "NotebookInstanceLifecycleConfigContent",
},
],
}
Instance Attribute Summary collapse
-
#notebook_instance_lifecycle_config_name ⇒ String
The name of the lifecycle configuration.
-
#on_create ⇒ Array<Types::NotebookInstanceLifecycleHook>
The shell script that runs only once, when you create a notebook instance.
-
#on_start ⇒ Array<Types::NotebookInstanceLifecycleHook>
The shell script that runs every time you start a notebook instance, including when you create the notebook instance.
Instance Attribute Details
#notebook_instance_lifecycle_config_name ⇒ String
The name of the lifecycle configuration.
20169 20170 20171 20172 20173 20174 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20169 class UpdateNotebookInstanceLifecycleConfigInput < Struct.new( :notebook_instance_lifecycle_config_name, :on_create, :on_start) include Aws::Structure end |
#on_create ⇒ Array<Types::NotebookInstanceLifecycleHook>
The shell script that runs only once, when you create a notebook instance. The shell script must be a base64-encoded string.
20169 20170 20171 20172 20173 20174 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20169 class UpdateNotebookInstanceLifecycleConfigInput < Struct.new( :notebook_instance_lifecycle_config_name, :on_create, :on_start) include Aws::Structure end |
#on_start ⇒ Array<Types::NotebookInstanceLifecycleHook>
The shell script that runs every time you start a notebook instance, including when you create the notebook instance. The shell script must be a base64-encoded string.
20169 20170 20171 20172 20173 20174 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20169 class UpdateNotebookInstanceLifecycleConfigInput < Struct.new( :notebook_instance_lifecycle_config_name, :on_create, :on_start) include Aws::Structure end |