aws-cdk-lib.aws_sagemaker.CfnUserProfile.KernelGatewayAppSettingsProperty

interface KernelGatewayAppSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnUserProfile.KernelGatewayAppSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnUserProfile_KernelGatewayAppSettingsProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnUserProfile.KernelGatewayAppSettingsProperty
Pythonaws_cdk.aws_sagemaker.CfnUserProfile.KernelGatewayAppSettingsProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnUserProfile » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const kernelGatewayAppSettingsProperty: sagemaker.CfnUserProfile.KernelGatewayAppSettingsProperty = {
  customImages: [{
    appImageConfigName: 'appImageConfigName',
    imageName: 'imageName',

    // the properties below are optional
    imageVersionNumber: 123,
  }],
  defaultResourceSpec: {
    instanceType: 'instanceType',
    sageMakerImageArn: 'sageMakerImageArn',
    sageMakerImageVersionArn: 'sageMakerImageVersionArn',
  },
};

Properties

NameTypeDescription
customImages?IResolvable | IResolvable | CustomImageProperty[]A list of custom SageMaker images that are configured to run as a KernelGateway app.
defaultResourceSpec?IResolvable | ResourceSpecPropertyThe default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.

customImages?

Type: IResolvable | IResolvable | CustomImageProperty[] (optional)

A list of custom SageMaker images that are configured to run as a KernelGateway app.


defaultResourceSpec?

Type: IResolvable | ResourceSpecProperty (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.