JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.sagemaker.model

Class ModelQualityAppSpecification

    • Constructor Detail

      • ModelQualityAppSpecification

        public ModelQualityAppSpecification()
    • Method Detail

      • setImageUri

        public void setImageUri(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.
      • getImageUri

        public String getImageUri()

        The address of the container image that the monitoring job runs.

        Returns:
        The address of the container image that the monitoring job runs.
      • withImageUri

        public ModelQualityAppSpecification withImageUri(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.
      • getContainerEntrypoint

        public List<String> getContainerEntrypoint()

        Specifies the entrypoint for a container that the monitoring job runs.

        Returns:
        Specifies the entrypoint for a container that the monitoring job runs.
      • setContainerEntrypoint

        public void setContainerEntrypoint(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.
      • withContainerEntrypoint

        public ModelQualityAppSpecification withContainerEntrypoint(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.
      • getContainerArguments

        public List<String> getContainerArguments()

        An array of arguments for the container used to run the monitoring job.

        Returns:
        An array of arguments for the container used to run the monitoring job.
      • setContainerArguments

        public void setContainerArguments(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.
      • withContainerArguments

        public ModelQualityAppSpecification withContainerArguments(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.
      • setRecordPreprocessorSourceUri

        public void setRecordPreprocessorSourceUri(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.
      • getRecordPreprocessorSourceUri

        public String 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.

        Returns:
        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.
      • withRecordPreprocessorSourceUri

        public ModelQualityAppSpecification withRecordPreprocessorSourceUri(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.
      • setPostAnalyticsProcessorSourceUri

        public void setPostAnalyticsProcessorSourceUri(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.
      • getPostAnalyticsProcessorSourceUri

        public String 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.

        Returns:
        An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
      • withPostAnalyticsProcessorSourceUri

        public ModelQualityAppSpecification withPostAnalyticsProcessorSourceUri(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.
      • setProblemType

        public void setProblemType(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.
        See Also:
        MonitoringProblemType
      • getProblemType

        public String getProblemType()

        The machine learning problem type of the model that the monitoring job monitors.

        Returns:
        The machine learning problem type of the model that the monitoring job monitors.
        See Also:
        MonitoringProblemType
      • withProblemType

        public ModelQualityAppSpecification withProblemType(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
      • withProblemType

        public ModelQualityAppSpecification withProblemType(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
      • getEnvironment

        public Map<String,String> getEnvironment()

        Sets the environment variables in the container that the monitoring job runs.

        Returns:
        Sets the environment variables in the container that the monitoring job runs.
      • setEnvironment

        public void setEnvironment(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.
      • withEnvironment

        public ModelQualityAppSpecification withEnvironment(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.
      • clearEnvironmentEntries

        public ModelQualityAppSpecification clearEnvironmentEntries()
        Removes all the entries added into Environment.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • toString

        public String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
        Returns:
        A string representation of this object.
        See Also:
        Object.toString()
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /