aws-cdk-lib.aws_sagemaker.CfnModelBiasJobDefinition.ModelBiasAppSpecificationProperty

interface ModelBiasAppSpecificationProperty

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

Docker container image configuration object for the model bias 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 modelBiasAppSpecificationProperty: sagemaker.CfnModelBiasJobDefinition.ModelBiasAppSpecificationProperty = {
  configUri: 'configUri',
  imageUri: 'imageUri',

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

Properties

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

configUri

Type: string

JSON formatted S3 file that defines bias parameters.

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


imageUri

Type: string

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


environment?

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

Sets the environment variables in the Docker container.