All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.sagemaker.inputs.DataQualityJobDefinitionDataQualityAppSpecificationArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.aws.sagemaker.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class DataQualityJobDefinitionDataQualityAppSpecificationArgs extends com.pulumi.resources.ResourceArgs {

    public static final DataQualityJobDefinitionDataQualityAppSpecificationArgs Empty = new DataQualityJobDefinitionDataQualityAppSpecificationArgs();

    /**
     * Sets the environment variables in the container that the monitoring job runs. A list of key value pairs.
     * 
     */
    @Import(name="environment")
    private @Nullable Output> environment;

    /**
     * @return Sets the environment variables in the container that the monitoring job runs. A list of key value pairs.
     * 
     */
    public Optional>> environment() {
        return Optional.ofNullable(this.environment);
    }

    /**
     * The container image that the data quality monitoring job runs.
     * 
     */
    @Import(name="imageUri", required=true)
    private Output imageUri;

    /**
     * @return The container image that the data quality monitoring job runs.
     * 
     */
    public Output imageUri() {
        return this.imageUri;
    }

    /**
     * An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
     * 
     */
    @Import(name="postAnalyticsProcessorSourceUri")
    private @Nullable Output postAnalyticsProcessorSourceUri;

    /**
     * @return An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
     * 
     */
    public Optional> postAnalyticsProcessorSourceUri() {
        return Optional.ofNullable(this.postAnalyticsProcessorSourceUri);
    }

    /**
     * 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 flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
     * 
     */
    @Import(name="recordPreprocessorSourceUri")
    private @Nullable Output recordPreprocessorSourceUri;

    /**
     * @return 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 flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
     * 
     */
    public Optional> recordPreprocessorSourceUri() {
        return Optional.ofNullable(this.recordPreprocessorSourceUri);
    }

    private DataQualityJobDefinitionDataQualityAppSpecificationArgs() {}

    private DataQualityJobDefinitionDataQualityAppSpecificationArgs(DataQualityJobDefinitionDataQualityAppSpecificationArgs $) {
        this.environment = $.environment;
        this.imageUri = $.imageUri;
        this.postAnalyticsProcessorSourceUri = $.postAnalyticsProcessorSourceUri;
        this.recordPreprocessorSourceUri = $.recordPreprocessorSourceUri;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(DataQualityJobDefinitionDataQualityAppSpecificationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private DataQualityJobDefinitionDataQualityAppSpecificationArgs $;

        public Builder() {
            $ = new DataQualityJobDefinitionDataQualityAppSpecificationArgs();
        }

        public Builder(DataQualityJobDefinitionDataQualityAppSpecificationArgs defaults) {
            $ = new DataQualityJobDefinitionDataQualityAppSpecificationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param environment Sets the environment variables in the container that the monitoring job runs. A list of key value pairs.
         * 
         * @return builder
         * 
         */
        public Builder environment(@Nullable Output> environment) {
            $.environment = environment;
            return this;
        }

        /**
         * @param environment Sets the environment variables in the container that the monitoring job runs. A list of key value pairs.
         * 
         * @return builder
         * 
         */
        public Builder environment(Map environment) {
            return environment(Output.of(environment));
        }

        /**
         * @param imageUri The container image that the data quality monitoring job runs.
         * 
         * @return builder
         * 
         */
        public Builder imageUri(Output imageUri) {
            $.imageUri = imageUri;
            return this;
        }

        /**
         * @param imageUri The container image that the data quality monitoring job runs.
         * 
         * @return builder
         * 
         */
        public Builder imageUri(String imageUri) {
            return imageUri(Output.of(imageUri));
        }

        /**
         * @param 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.
         * 
         * @return builder
         * 
         */
        public Builder postAnalyticsProcessorSourceUri(@Nullable Output postAnalyticsProcessorSourceUri) {
            $.postAnalyticsProcessorSourceUri = postAnalyticsProcessorSourceUri;
            return this;
        }

        /**
         * @param 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.
         * 
         * @return builder
         * 
         */
        public Builder postAnalyticsProcessorSourceUri(String postAnalyticsProcessorSourceUri) {
            return postAnalyticsProcessorSourceUri(Output.of(postAnalyticsProcessorSourceUri));
        }

        /**
         * @param 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 flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
         * 
         * @return builder
         * 
         */
        public Builder recordPreprocessorSourceUri(@Nullable Output recordPreprocessorSourceUri) {
            $.recordPreprocessorSourceUri = recordPreprocessorSourceUri;
            return this;
        }

        /**
         * @param 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 flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
         * 
         * @return builder
         * 
         */
        public Builder recordPreprocessorSourceUri(String recordPreprocessorSourceUri) {
            return recordPreprocessorSourceUri(Output.of(recordPreprocessorSourceUri));
        }

        public DataQualityJobDefinitionDataQualityAppSpecificationArgs build() {
            if ($.imageUri == null) {
                throw new MissingRequiredPropertyException("DataQualityJobDefinitionDataQualityAppSpecificationArgs", "imageUri");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy