aws-cdk-lib.aws_sagemaker.CfnAppImageConfigProps

interface CfnAppImageConfigProps

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnAppImageConfigProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAppImageConfigProps
Javasoftware.amazon.awscdk.services.sagemaker.CfnAppImageConfigProps
Pythonaws_cdk.aws_sagemaker.CfnAppImageConfigProps
TypeScript aws-cdk-lib » aws_sagemaker » CfnAppImageConfigProps

Properties for defining a CfnAppImageConfig.

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 cfnAppImageConfigProps: sagemaker.CfnAppImageConfigProps = {
  appImageConfigName: 'appImageConfigName',

  // the properties below are optional
  kernelGatewayImageConfig: {
    kernelSpecs: [{
      name: 'name',

      // the properties below are optional
      displayName: 'displayName',
    }],

    // the properties below are optional
    fileSystemConfig: {
      defaultGid: 123,
      defaultUid: 123,
      mountPath: 'mountPath',
    },
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
appImageConfigNamestringThe name of the AppImageConfig.
kernelGatewayImageConfig?IResolvable | KernelGatewayImageConfigPropertyThe configuration for the file system and kernels in the SageMaker image.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

appImageConfigName

Type: string

The name of the AppImageConfig.

Must be unique to your account.


kernelGatewayImageConfig?

Type: IResolvable | KernelGatewayImageConfigProperty (optional)

The configuration for the file system and kernels in the SageMaker image.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .