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

.NET
Go
Java
Python
TypeScript