interface ModelExplainabilityAppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelExplainabilityJobDefinitionPropsMixin_ModelExplainabilityAppSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.ModelExplainabilityAppSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const modelExplainabilityAppSpecificationProperty: sagemaker.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