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

com.pulumi.aws.glue.inputs.MLTransformParametersFindMatchesParametersArgs 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.glue.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final MLTransformParametersFindMatchesParametersArgs Empty = new MLTransformParametersFindMatchesParametersArgs();

    /**
     * The value that is selected when tuning your transform for a balance between accuracy and cost.
     * 
     */
    @Import(name="accuracyCostTradeOff")
    private @Nullable Output accuracyCostTradeOff;

    /**
     * @return The value that is selected when tuning your transform for a balance between accuracy and cost.
     * 
     */
    public Optional> accuracyCostTradeOff() {
        return Optional.ofNullable(this.accuracyCostTradeOff);
    }

    /**
     * The value to switch on or off to force the output to match the provided labels from users.
     * 
     */
    @Import(name="enforceProvidedLabels")
    private @Nullable Output enforceProvidedLabels;

    /**
     * @return The value to switch on or off to force the output to match the provided labels from users.
     * 
     */
    public Optional> enforceProvidedLabels() {
        return Optional.ofNullable(this.enforceProvidedLabels);
    }

    /**
     * The value selected when tuning your transform for a balance between precision and recall.
     * 
     */
    @Import(name="precisionRecallTradeOff")
    private @Nullable Output precisionRecallTradeOff;

    /**
     * @return The value selected when tuning your transform for a balance between precision and recall.
     * 
     */
    public Optional> precisionRecallTradeOff() {
        return Optional.ofNullable(this.precisionRecallTradeOff);
    }

    /**
     * The name of a column that uniquely identifies rows in the source table.
     * 
     */
    @Import(name="primaryKeyColumnName")
    private @Nullable Output primaryKeyColumnName;

    /**
     * @return The name of a column that uniquely identifies rows in the source table.
     * 
     */
    public Optional> primaryKeyColumnName() {
        return Optional.ofNullable(this.primaryKeyColumnName);
    }

    private MLTransformParametersFindMatchesParametersArgs() {}

    private MLTransformParametersFindMatchesParametersArgs(MLTransformParametersFindMatchesParametersArgs $) {
        this.accuracyCostTradeOff = $.accuracyCostTradeOff;
        this.enforceProvidedLabels = $.enforceProvidedLabels;
        this.precisionRecallTradeOff = $.precisionRecallTradeOff;
        this.primaryKeyColumnName = $.primaryKeyColumnName;
    }

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

    public static final class Builder {
        private MLTransformParametersFindMatchesParametersArgs $;

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

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

        /**
         * @param accuracyCostTradeOff The value that is selected when tuning your transform for a balance between accuracy and cost.
         * 
         * @return builder
         * 
         */
        public Builder accuracyCostTradeOff(@Nullable Output accuracyCostTradeOff) {
            $.accuracyCostTradeOff = accuracyCostTradeOff;
            return this;
        }

        /**
         * @param accuracyCostTradeOff The value that is selected when tuning your transform for a balance between accuracy and cost.
         * 
         * @return builder
         * 
         */
        public Builder accuracyCostTradeOff(Double accuracyCostTradeOff) {
            return accuracyCostTradeOff(Output.of(accuracyCostTradeOff));
        }

        /**
         * @param enforceProvidedLabels The value to switch on or off to force the output to match the provided labels from users.
         * 
         * @return builder
         * 
         */
        public Builder enforceProvidedLabels(@Nullable Output enforceProvidedLabels) {
            $.enforceProvidedLabels = enforceProvidedLabels;
            return this;
        }

        /**
         * @param enforceProvidedLabels The value to switch on or off to force the output to match the provided labels from users.
         * 
         * @return builder
         * 
         */
        public Builder enforceProvidedLabels(Boolean enforceProvidedLabels) {
            return enforceProvidedLabels(Output.of(enforceProvidedLabels));
        }

        /**
         * @param precisionRecallTradeOff The value selected when tuning your transform for a balance between precision and recall.
         * 
         * @return builder
         * 
         */
        public Builder precisionRecallTradeOff(@Nullable Output precisionRecallTradeOff) {
            $.precisionRecallTradeOff = precisionRecallTradeOff;
            return this;
        }

        /**
         * @param precisionRecallTradeOff The value selected when tuning your transform for a balance between precision and recall.
         * 
         * @return builder
         * 
         */
        public Builder precisionRecallTradeOff(Double precisionRecallTradeOff) {
            return precisionRecallTradeOff(Output.of(precisionRecallTradeOff));
        }

        /**
         * @param primaryKeyColumnName The name of a column that uniquely identifies rows in the source table.
         * 
         * @return builder
         * 
         */
        public Builder primaryKeyColumnName(@Nullable Output primaryKeyColumnName) {
            $.primaryKeyColumnName = primaryKeyColumnName;
            return this;
        }

        /**
         * @param primaryKeyColumnName The name of a column that uniquely identifies rows in the source table.
         * 
         * @return builder
         * 
         */
        public Builder primaryKeyColumnName(String primaryKeyColumnName) {
            return primaryKeyColumnName(Output.of(primaryKeyColumnName));
        }

        public MLTransformParametersFindMatchesParametersArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy