com.pulumi.aws.quicksight.inputs.AnalysisParametersDecimalParameterArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.Double;
import java.lang.String;
import java.util.List;
import java.util.Objects;
public final class AnalysisParametersDecimalParameterArgs extends com.pulumi.resources.ResourceArgs {
public static final AnalysisParametersDecimalParameterArgs Empty = new AnalysisParametersDecimalParameterArgs();
/**
* 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 AnalysisParametersDecimalParameterArgs() {}
private AnalysisParametersDecimalParameterArgs(AnalysisParametersDecimalParameterArgs $) {
this.name = $.name;
this.values = $.values;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AnalysisParametersDecimalParameterArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AnalysisParametersDecimalParameterArgs $;
public Builder() {
$ = new AnalysisParametersDecimalParameterArgs();
}
public Builder(AnalysisParametersDecimalParameterArgs defaults) {
$ = new AnalysisParametersDecimalParameterArgs(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(Double... values) {
return values(List.of(values));
}
public AnalysisParametersDecimalParameterArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("AnalysisParametersDecimalParameterArgs", "name");
}
if ($.values == null) {
throw new MissingRequiredPropertyException("AnalysisParametersDecimalParameterArgs", "values");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy