interface CfnAppImageConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnAppImageConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnAppImageConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnAppImageConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnAppImageConfigMixinProps |
Properties for CfnAppImageConfigPropsMixin.
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 cfnAppImageConfigMixinProps: sagemaker_mixins.CfnAppImageConfigMixinProps = {
appImageConfigName: 'appImageConfigName',
codeEditorAppImageConfig: {
containerConfig: {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
containerEnvironmentVariables: [{
key: 'key',
value: 'value',
}],
},
},
jupyterLabAppImageConfig: {
containerConfig: {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
containerEnvironmentVariables: [{
key: 'key',
value: 'value',
}],
},
},
kernelGatewayImageConfig: {
fileSystemConfig: {
defaultGid: 123,
defaultUid: 123,
mountPath: 'mountPath',
},
kernelSpecs: [{
displayName: 'displayName',
name: 'name',
}],
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The name of the AppImageConfig. |
| code | IResolvable | Code | The configuration for the file system and the runtime, such as the environment variables and entry point. |
| jupyter | IResolvable | Jupyter | The configuration for the file system and the runtime, such as the environment variables and entry point. |
| kernel | IResolvable | Kernel | The configuration for the file system and kernels in the SageMaker AI image. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
appImageConfigName?
Type:
string
(optional)
The name of the AppImageConfig.
Must be unique to your account.
codeEditorAppImageConfig?
Type:
IResolvable | Code
(optional)
The configuration for the file system and the runtime, such as the environment variables and entry point.
jupyterLabAppImageConfig?
Type:
IResolvable | Jupyter
(optional)
The configuration for the file system and the runtime, such as the environment variables and entry point.
kernelGatewayImageConfig?
Type:
IResolvable | Kernel
(optional)
The configuration for the file system and kernels in the SageMaker AI image.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript