Interface CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnModelQualityJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnModelQualityJobDefinitionPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
ModelQualityAppSpecificationProperty modelQualityAppSpecificationProperty = ModelQualityAppSpecificationProperty.builder()
.containerArguments(List.of("containerArguments"))
.containerEntrypoint(List.of("containerEntrypoint"))
.environment(Map.of(
"environmentKey", "environment"))
.imageUri("imageUri")
.postAnalyticsProcessorSourceUri("postAnalyticsProcessorSourceUri")
.problemType("problemType")
.recordPreprocessorSourceUri("recordPreprocessorSourceUri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An array of arguments for the container used to run the monitoring job.Specifies the entrypoint for a container that the monitoring job runs.default ObjectSets the environment variables in the container that the monitoring job runs.default StringThe address of the container image that the monitoring job runs.default StringAn Amazon S3 URI to a script that is called after analysis has been performed.default StringThe machine learning problem type of the model that the monitoring job monitors.default StringAn Amazon S3 URI to a script that is called per row prior to running analysis.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerArguments
An array of arguments for the container used to run the monitoring job.- See Also:
-
getContainerEntrypoint
Specifies the entrypoint for a container that the monitoring job runs.- See Also:
-
getEnvironment
Sets the environment variables in the container that the monitoring job runs.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getImageUri
The address of the container image that the monitoring job runs.- See Also:
-
getPostAnalyticsProcessorSourceUri
An Amazon S3 URI to a script that is called after analysis has been performed.Applicable only for the built-in (first party) containers.
- See Also:
-
getProblemType
The machine learning problem type of the model that the monitoring job monitors.- See Also:
-
getRecordPreprocessorSourceUri
An Amazon S3 URI to a script that is called per row prior to running analysis.It can base64 decode the payload and convert it into a flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
- See Also:
-
builder
@Stability(Stable) static CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty.Builder builder()
-