Interface CfnModelBiasJobDefinitionPropsMixin.ModelBiasAppSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelBiasJobDefinitionPropsMixin.ModelBiasAppSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnModelBiasJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnModelBiasJobDefinitionPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
ModelBiasAppSpecificationProperty modelBiasAppSpecificationProperty = ModelBiasAppSpecificationProperty.builder()
.configUri("configUri")
.environment(Map.of(
"environmentKey", "environment"))
.imageUri("imageUri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelBiasJobDefinitionPropsMixin.ModelBiasAppSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigUri
JSON formatted S3 file that defines bias parameters.For more information on this JSON configuration file, see Configure bias parameters .
- See Also:
-
getEnvironment
Sets the environment variables in the Docker container.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getImageUri
The container image to be run by the model bias job.- See Also:
-
builder
@Stability(Stable) static CfnModelBiasJobDefinitionPropsMixin.ModelBiasAppSpecificationProperty.Builder builder()
-