Class: Aws::SageMaker::Types::KernelSpec
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::KernelSpec
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The specification of a Jupyter kernel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#display_name ⇒ String
The display name of the kernel.
-
#name ⇒ String
The name of the Jupyter kernel in the image.
Instance Attribute Details
#display_name ⇒ String
The display name of the kernel.
25351 25352 25353 25354 25355 25356 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25351 class KernelSpec < Struct.new( :name, :display_name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the Jupyter kernel in the image. This value is case sensitive.
25351 25352 25353 25354 25355 25356 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25351 class KernelSpec < Struct.new( :name, :display_name) SENSITIVE = [] include Aws::Structure end |