interface KernelSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAppImageConfig.KernelSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAppImageConfig_KernelSpecProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.KernelSpecProperty |
Python | aws_cdk.aws_sagemaker.CfnAppImageConfig.KernelSpecProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAppImageConfig » KernelSpecProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const kernelSpecProperty: sagemaker.CfnAppImageConfig.KernelSpecProperty = {
name: 'name',
// the properties below are optional
displayName: 'displayName',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the Jupyter kernel in the image. |
| display | string | The display name of the kernel. |
name
Type:
string
The name of the Jupyter kernel in the image.
This value is case sensitive.
displayName?
Type:
string
(optional)
The display name of the kernel.

.NET
Go
Java
Python
TypeScript