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.
      25228 25229 25230 25231 25232 25233  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 25228 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.
      25228 25229 25230 25231 25232 25233  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 25228 class KernelSpec < Struct.new( :name, :display_name) SENSITIVE = [] include Aws::Structure end  |