Class: Aws::SageMaker::Types::UpdateNotebookInstanceLifecycleConfigInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#notebook_instance_lifecycle_config_nameString

The name of the lifecycle configuration.

Returns:

  • (String)


11503
11504
11505
11506
11507
11508
# File 'lib/aws-sdk-sagemaker/types.rb', line 11503

class UpdateNotebookInstanceLifecycleConfigInput < Struct.new(
  :notebook_instance_lifecycle_config_name,
  :on_create,
  :on_start)
  include Aws::Structure
end

#on_createArray<Types::NotebookInstanceLifecycleHook>

The shell script that runs only once, when you create a notebook instance



11503
11504
11505
11506
11507
11508
# File 'lib/aws-sdk-sagemaker/types.rb', line 11503

class UpdateNotebookInstanceLifecycleConfigInput < Struct.new(
  :notebook_instance_lifecycle_config_name,
  :on_create,
  :on_start)
  include Aws::Structure
end

#on_startArray<Types::NotebookInstanceLifecycleHook>

The shell script that runs every time you start a notebook instance, including when you create the notebook instance.



11503
11504
11505
11506
11507
11508
# File 'lib/aws-sdk-sagemaker/types.rb', line 11503

class UpdateNotebookInstanceLifecycleConfigInput < Struct.new(
  :notebook_instance_lifecycle_config_name,
  :on_create,
  :on_start)
  include Aws::Structure
end