interface KernelSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnAppImageConfigPropsMixin.KernelSpecProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnAppImageConfigPropsMixin_KernelSpecProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnAppImageConfigPropsMixin.KernelSpecProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnAppImageConfigPropsMixin.KernelSpecProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const kernelSpecProperty: sagemaker.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