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

.NET
Go
Java
Python
TypeScript