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

com.pulumi.aws.quicksight.inputs.AnalysisParametersIntegerParameterArgs 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.quicksight.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;


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

    public static final AnalysisParametersIntegerParameterArgs Empty = new AnalysisParametersIntegerParameterArgs();

    /**
     * Display name for the analysis.
     * 
     * The following arguments are optional:
     * 
     */
    @Import(name="name", required=true)
    private Output name;

    /**
     * @return Display name for the analysis.
     * 
     * The following arguments are optional:
     * 
     */
    public Output name() {
        return this.name;
    }

    @Import(name="values", required=true)
    private Output> values;

    public Output> values() {
        return this.values;
    }

    private AnalysisParametersIntegerParameterArgs() {}

    private AnalysisParametersIntegerParameterArgs(AnalysisParametersIntegerParameterArgs $) {
        this.name = $.name;
        this.values = $.values;
    }

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

    public static final class Builder {
        private AnalysisParametersIntegerParameterArgs $;

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

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

        /**
         * @param name Display name for the analysis.
         * 
         * The following arguments are optional:
         * 
         * @return builder
         * 
         */
        public Builder name(Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Display name for the analysis.
         * 
         * The following arguments are optional:
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        public Builder values(Output> values) {
            $.values = values;
            return this;
        }

        public Builder values(List values) {
            return values(Output.of(values));
        }

        public Builder values(Integer... values) {
            return values(List.of(values));
        }

        public AnalysisParametersIntegerParameterArgs build() {
            if ($.name == null) {
                throw new MissingRequiredPropertyException("AnalysisParametersIntegerParameterArgs", "name");
            }
            if ($.values == null) {
                throw new MissingRequiredPropertyException("AnalysisParametersIntegerParameterArgs", "values");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy