Interface CfnAppImageConfig.KernelSpecProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnAppImageConfig.KernelSpecProperty.Jsii$Proxy
- Enclosing class:
- CfnAppImageConfig
@Stability(Stable)
public static interface CfnAppImageConfig.KernelSpecProperty
extends software.amazon.jsii.JsiiSerializable
The specification of a Jupyter kernel.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 KernelSpecProperty kernelSpecProperty = KernelSpecProperty.builder()
         .name("name")
         // the properties below are optional
         .displayName("displayName")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppImageConfig.KernelSpecPropertystatic final classAn implementation forCfnAppImageConfig.KernelSpecProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNameThe name of the Jupyter kernel in the image.This value is case sensitive. 
- 
getDisplayNameThe display name of the kernel.
- 
builder
 
-