Interface ModelQualityAppSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ModelQualityAppSpecification.Builder,ModelQualityAppSpecification>,SdkBuilder<ModelQualityAppSpecification.Builder,ModelQualityAppSpecification>,SdkPojo
- Enclosing class:
- ModelQualityAppSpecification
public static interface ModelQualityAppSpecification.Builder extends SdkPojo, CopyableBuilder<ModelQualityAppSpecification.Builder,ModelQualityAppSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelQualityAppSpecification.BuildercontainerArguments(String... containerArguments)An array of arguments for the container used to run the monitoring job.ModelQualityAppSpecification.BuildercontainerArguments(Collection<String> containerArguments)An array of arguments for the container used to run the monitoring job.ModelQualityAppSpecification.BuildercontainerEntrypoint(String... containerEntrypoint)Specifies the entrypoint for a container that the monitoring job runs.ModelQualityAppSpecification.BuildercontainerEntrypoint(Collection<String> containerEntrypoint)Specifies the entrypoint for a container that the monitoring job runs.ModelQualityAppSpecification.Builderenvironment(Map<String,String> environment)Sets the environment variables in the container that the monitoring job runs.ModelQualityAppSpecification.BuilderimageUri(String imageUri)The address of the container image that the monitoring job runs.ModelQualityAppSpecification.BuilderpostAnalyticsProcessorSourceUri(String postAnalyticsProcessorSourceUri)An Amazon S3 URI to a script that is called after analysis has been performed.ModelQualityAppSpecification.BuilderproblemType(String problemType)The machine learning problem type of the model that the monitoring job monitors.ModelQualityAppSpecification.BuilderproblemType(MonitoringProblemType problemType)The machine learning problem type of the model that the monitoring job monitors.ModelQualityAppSpecification.BuilderrecordPreprocessorSourceUri(String recordPreprocessorSourceUri)An Amazon S3 URI to a script that is called per row prior to running analysis.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
imageUri
ModelQualityAppSpecification.Builder imageUri(String imageUri)
The address of the container image that the monitoring job runs.
- Parameters:
imageUri- The address of the container image that the monitoring job runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
ModelQualityAppSpecification.Builder containerEntrypoint(Collection<String> containerEntrypoint)
Specifies the entrypoint for a container that the monitoring job runs.
- Parameters:
containerEntrypoint- Specifies the entrypoint for a container that the monitoring job runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
ModelQualityAppSpecification.Builder containerEntrypoint(String... containerEntrypoint)
Specifies the entrypoint for a container that the monitoring job runs.
- Parameters:
containerEntrypoint- Specifies the entrypoint for a container that the monitoring job runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
ModelQualityAppSpecification.Builder containerArguments(Collection<String> containerArguments)
An array of arguments for the container used to run the monitoring job.
- Parameters:
containerArguments- An array of arguments for the container used to run the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
ModelQualityAppSpecification.Builder containerArguments(String... containerArguments)
An array of arguments for the container used to run the monitoring job.
- Parameters:
containerArguments- An array of arguments for the container used to run the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordPreprocessorSourceUri
ModelQualityAppSpecification.Builder recordPreprocessorSourceUri(String recordPreprocessorSourceUri)
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.
- Parameters:
recordPreprocessorSourceUri- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postAnalyticsProcessorSourceUri
ModelQualityAppSpecification.Builder postAnalyticsProcessorSourceUri(String postAnalyticsProcessorSourceUri)
An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
- Parameters:
postAnalyticsProcessorSourceUri- An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
problemType
ModelQualityAppSpecification.Builder problemType(String problemType)
The machine learning problem type of the model that the monitoring job monitors.
- Parameters:
problemType- The machine learning problem type of the model that the monitoring job monitors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MonitoringProblemType,MonitoringProblemType
-
problemType
ModelQualityAppSpecification.Builder problemType(MonitoringProblemType problemType)
The machine learning problem type of the model that the monitoring job monitors.
- Parameters:
problemType- The machine learning problem type of the model that the monitoring job monitors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MonitoringProblemType,MonitoringProblemType
-
environment
ModelQualityAppSpecification.Builder environment(Map<String,String> environment)
Sets the environment variables in the container that the monitoring job runs.
- Parameters:
environment- Sets the environment variables in the container that the monitoring job runs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-