interface KernelGatewayAppSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnSpace.KernelGatewayAppSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnSpace.KernelGatewayAppSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnSpace.KernelGatewayAppSettingsProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnSpace » KernelGatewayAppSettingsProperty |
The KernelGateway app settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const kernelGatewayAppSettingsProperty: sagemaker.CfnSpace.KernelGatewayAppSettingsProperty = {
customImages: [{
appImageConfigName: 'appImageConfigName',
imageName: 'imageName',
// the properties below are optional
imageVersionNumber: 123,
}],
defaultResourceSpec: {
instanceType: 'instanceType',
sageMakerImageArn: 'sageMakerImageArn',
sageMakerImageVersionArn: 'sageMakerImageVersionArn',
},
};
Properties
Name | Type | Description |
---|---|---|
custom | IResolvable | IResolvable | Custom [] | A list of custom SageMaker images that are configured to run as a KernelGateway app. |
default | IResolvable | Resource | The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app. |
customImages?
Type:
IResolvable
|
IResolvable
|
Custom
[]
(optional)
A list of custom SageMaker images that are configured to run as a KernelGateway app.
defaultResourceSpec?
Type:
IResolvable
|
Resource
(optional)
The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
The Amazon SageMaker Studio UI does not use the default instance type value set here. The default instance type set here is used when Apps are created using the AWS Command Line Interface or AWS CloudFormation and the instance type parameter value is not passed.