Class: Aws::SageMaker::Types::CreatePresignedNotebookInstanceUrlInput

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 CreatePresignedNotebookInstanceUrlInput data as a hash:

{
  notebook_instance_name: "NotebookInstanceName", # required
  session_expiration_duration_in_seconds: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#notebook_instance_nameString

The name of the notebook instance.

Returns:

  • (String)


2382
2383
2384
2385
2386
# File 'lib/aws-sdk-sagemaker/types.rb', line 2382

class CreatePresignedNotebookInstanceUrlInput < Struct.new(
  :notebook_instance_name,
  :session_expiration_duration_in_seconds)
  include Aws::Structure
end

#session_expiration_duration_in_secondsInteger

The duration of the session, in seconds. The default is 12 hours.

Returns:

  • (Integer)


2382
2383
2384
2385
2386
# File 'lib/aws-sdk-sagemaker/types.rb', line 2382

class CreatePresignedNotebookInstanceUrlInput < Struct.new(
  :notebook_instance_name,
  :session_expiration_duration_in_seconds)
  include Aws::Structure
end