interface ModelExplainabilityAppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelExplainabilityJobDefinitionPropsMixin_ModelExplainabilityAppSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelExplainabilityJobDefinitionPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const modelExplainabilityAppSpecificationProperty: sagemaker_mixins.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty = {
configUri: 'configUri',
environment: {
environmentKey: 'environment',
},
imageUri: 'imageUri',
};
Properties
| Name | Type | Description |
|---|---|---|
| config | string | JSON formatted Amazon S3 file that defines explainability parameters. |
| environment? | { [string]: string } | IResolvable | Sets the environment variables in the Docker container. |
| image | string | The container image to be run by the model explainability job. |
configUri?
Type:
string
(optional)
JSON formatted Amazon S3 file that defines explainability parameters.
For more information on this JSON configuration file, see Configure model explainability parameters .
environment?
Type:
{ [string]: string } | IResolvable
(optional)
Sets the environment variables in the Docker container.
imageUri?
Type:
string
(optional)
The container image to be run by the model explainability job.

.NET
Go
Java
Python
TypeScript