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();