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

com.pulumi.aws.quicksight.inputs.DashboardParametersArgs 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.aws.quicksight.inputs.DashboardParametersDateTimeParameterArgs;
import com.pulumi.aws.quicksight.inputs.DashboardParametersDecimalParameterArgs;
import com.pulumi.aws.quicksight.inputs.DashboardParametersIntegerParameterArgs;
import com.pulumi.aws.quicksight.inputs.DashboardParametersStringParameterArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final DashboardParametersArgs Empty = new DashboardParametersArgs();

    /**
     * A list of parameters that have a data type of date-time. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DateTimeParameter.html).
     * 
     */
    @Import(name="dateTimeParameters")
    private @Nullable Output> dateTimeParameters;

    /**
     * @return A list of parameters that have a data type of date-time. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DateTimeParameter.html).
     * 
     */
    public Optional>> dateTimeParameters() {
        return Optional.ofNullable(this.dateTimeParameters);
    }

    /**
     * A list of parameters that have a data type of decimal. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DecimalParameter.html).
     * 
     */
    @Import(name="decimalParameters")
    private @Nullable Output> decimalParameters;

    /**
     * @return A list of parameters that have a data type of decimal. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DecimalParameter.html).
     * 
     */
    public Optional>> decimalParameters() {
        return Optional.ofNullable(this.decimalParameters);
    }

    /**
     * A list of parameters that have a data type of integer. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_IntegerParameter.html).
     * 
     */
    @Import(name="integerParameters")
    private @Nullable Output> integerParameters;

    /**
     * @return A list of parameters that have a data type of integer. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_IntegerParameter.html).
     * 
     */
    public Optional>> integerParameters() {
        return Optional.ofNullable(this.integerParameters);
    }

    /**
     * A list of parameters that have a data type of string. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_StringParameter.html).
     * 
     */
    @Import(name="stringParameters")
    private @Nullable Output> stringParameters;

    /**
     * @return A list of parameters that have a data type of string. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_StringParameter.html).
     * 
     */
    public Optional>> stringParameters() {
        return Optional.ofNullable(this.stringParameters);
    }

    private DashboardParametersArgs() {}

    private DashboardParametersArgs(DashboardParametersArgs $) {
        this.dateTimeParameters = $.dateTimeParameters;
        this.decimalParameters = $.decimalParameters;
        this.integerParameters = $.integerParameters;
        this.stringParameters = $.stringParameters;
    }

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

    public static final class Builder {
        private DashboardParametersArgs $;

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

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

        /**
         * @param dateTimeParameters A list of parameters that have a data type of date-time. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DateTimeParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder dateTimeParameters(@Nullable Output> dateTimeParameters) {
            $.dateTimeParameters = dateTimeParameters;
            return this;
        }

        /**
         * @param dateTimeParameters A list of parameters that have a data type of date-time. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DateTimeParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder dateTimeParameters(List dateTimeParameters) {
            return dateTimeParameters(Output.of(dateTimeParameters));
        }

        /**
         * @param dateTimeParameters A list of parameters that have a data type of date-time. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DateTimeParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder dateTimeParameters(DashboardParametersDateTimeParameterArgs... dateTimeParameters) {
            return dateTimeParameters(List.of(dateTimeParameters));
        }

        /**
         * @param decimalParameters A list of parameters that have a data type of decimal. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DecimalParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder decimalParameters(@Nullable Output> decimalParameters) {
            $.decimalParameters = decimalParameters;
            return this;
        }

        /**
         * @param decimalParameters A list of parameters that have a data type of decimal. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DecimalParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder decimalParameters(List decimalParameters) {
            return decimalParameters(Output.of(decimalParameters));
        }

        /**
         * @param decimalParameters A list of parameters that have a data type of decimal. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DecimalParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder decimalParameters(DashboardParametersDecimalParameterArgs... decimalParameters) {
            return decimalParameters(List.of(decimalParameters));
        }

        /**
         * @param integerParameters A list of parameters that have a data type of integer. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_IntegerParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder integerParameters(@Nullable Output> integerParameters) {
            $.integerParameters = integerParameters;
            return this;
        }

        /**
         * @param integerParameters A list of parameters that have a data type of integer. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_IntegerParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder integerParameters(List integerParameters) {
            return integerParameters(Output.of(integerParameters));
        }

        /**
         * @param integerParameters A list of parameters that have a data type of integer. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_IntegerParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder integerParameters(DashboardParametersIntegerParameterArgs... integerParameters) {
            return integerParameters(List.of(integerParameters));
        }

        /**
         * @param stringParameters A list of parameters that have a data type of string. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_StringParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder stringParameters(@Nullable Output> stringParameters) {
            $.stringParameters = stringParameters;
            return this;
        }

        /**
         * @param stringParameters A list of parameters that have a data type of string. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_StringParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder stringParameters(List stringParameters) {
            return stringParameters(Output.of(stringParameters));
        }

        /**
         * @param stringParameters A list of parameters that have a data type of string. See [AWS API Documentation for complete description](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_StringParameter.html).
         * 
         * @return builder
         * 
         */
        public Builder stringParameters(DashboardParametersStringParameterArgs... stringParameters) {
            return stringParameters(List.of(stringParameters));
        }

        public DashboardParametersArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy