Interface CfnModelQualityJobDefinition.ModelQualityAppSpecificationProperty

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

@Stability(Stable) public static interface CfnModelQualityJobDefinition.ModelQualityAppSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Container image configuration object for the monitoring 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.*;
 ModelQualityAppSpecificationProperty modelQualityAppSpecificationProperty = ModelQualityAppSpecificationProperty.builder()
         .imageUri("imageUri")
         .problemType("problemType")
         // the properties below are optional
         .containerArguments(List.of("containerArguments"))
         .containerEntrypoint(List.of("containerEntrypoint"))
         .environment(Map.of(
                 "environmentKey", "environment"))
         .postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
         .recordPreprocessorSourceUri("recordPreprocessorSourceUri")
         .build();
 

See Also: