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

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

// *** 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final FeatureGroupFeatureDefinitionArgs Empty = new FeatureGroupFeatureDefinitionArgs();

    /**
     * The name of a feature. `feature_name` cannot be any of the following: `is_deleted`, `write_time`, `api_invocation_time`.
     * 
     */
    @Import(name="featureName")
    private @Nullable Output featureName;

    /**
     * @return The name of a feature. `feature_name` cannot be any of the following: `is_deleted`, `write_time`, `api_invocation_time`.
     * 
     */
    public Optional> featureName() {
        return Optional.ofNullable(this.featureName);
    }

    /**
     * The value type of a feature. Valid values are `Integral`, `Fractional`, or `String`.
     * 
     */
    @Import(name="featureType")
    private @Nullable Output featureType;

    /**
     * @return The value type of a feature. Valid values are `Integral`, `Fractional`, or `String`.
     * 
     */
    public Optional> featureType() {
        return Optional.ofNullable(this.featureType);
    }

    private FeatureGroupFeatureDefinitionArgs() {}

    private FeatureGroupFeatureDefinitionArgs(FeatureGroupFeatureDefinitionArgs $) {
        this.featureName = $.featureName;
        this.featureType = $.featureType;
    }

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

    public static final class Builder {
        private FeatureGroupFeatureDefinitionArgs $;

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

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

        /**
         * @param featureName The name of a feature. `feature_name` cannot be any of the following: `is_deleted`, `write_time`, `api_invocation_time`.
         * 
         * @return builder
         * 
         */
        public Builder featureName(@Nullable Output featureName) {
            $.featureName = featureName;
            return this;
        }

        /**
         * @param featureName The name of a feature. `feature_name` cannot be any of the following: `is_deleted`, `write_time`, `api_invocation_time`.
         * 
         * @return builder
         * 
         */
        public Builder featureName(String featureName) {
            return featureName(Output.of(featureName));
        }

        /**
         * @param featureType The value type of a feature. Valid values are `Integral`, `Fractional`, or `String`.
         * 
         * @return builder
         * 
         */
        public Builder featureType(@Nullable Output featureType) {
            $.featureType = featureType;
            return this;
        }

        /**
         * @param featureType The value type of a feature. Valid values are `Integral`, `Fractional`, or `String`.
         * 
         * @return builder
         * 
         */
        public Builder featureType(String featureType) {
            return featureType(Output.of(featureType));
        }

        public FeatureGroupFeatureDefinitionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy