aws-cdk-lib.aws_sagemaker.CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty

interface ModelExplainabilityAppSpecificationProperty

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

Docker container image configuration object for the model explainability job.

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 modelExplainabilityAppSpecificationProperty: sagemaker.CfnModelExplainabilityJobDefinition.ModelExplainabilityAppSpecificationProperty = {
  configUri: 'configUri',
  imageUri: 'imageUri',

  // the properties below are optional
  environment: {
    environmentKey: 'environment',
  },
};

Properties

NameTypeDescription
configUristringJSON formatted S3 file that defines explainability parameters.
imageUristringThe container image to be run by the model explainability job.
environment?IResolvable | { [string]: string }Sets the environment variables in the Docker container.

configUri

Type: string

JSON formatted S3 file that defines explainability parameters.

For more information on this JSON configuration file, see Configure model explainability parameters .


imageUri

Type: string

The container image to be run by the model explainability job.


environment?

Type: IResolvable | { [string]: string } (optional)

Sets the environment variables in the Docker container.