Interface CfnModelBiasJobDefinition.ModelBiasAppSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelBiasJobDefinition.ModelBiasAppSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnModelBiasJobDefinition

@Stability(Stable) public static interface CfnModelBiasJobDefinition.ModelBiasAppSpecificationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 ModelBiasAppSpecificationProperty modelBiasAppSpecificationProperty = ModelBiasAppSpecificationProperty.builder()
         .configUri("configUri")
         .imageUri("imageUri")
         // the properties below are optional
         .environment(Map.of(
                 "environmentKey", "environment"))
         .build();
 

See Also: