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

com.pulumi.aws.quicksight.inputs.GetQuicksightAnalysisArgs 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.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetQuicksightAnalysisArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetQuicksightAnalysisArgs Empty = new GetQuicksightAnalysisArgs();

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

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

    /**
     * AWS account ID.
     * 
     */
    @Import(name="awsAccountId")
    private @Nullable Output awsAccountId;

    /**
     * @return AWS account ID.
     * 
     */
    public Optional> awsAccountId() {
        return Optional.ofNullable(this.awsAccountId);
    }

    @Import(name="tags")
    private @Nullable Output> tags;

    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private GetQuicksightAnalysisArgs() {}

    private GetQuicksightAnalysisArgs(GetQuicksightAnalysisArgs $) {
        this.analysisId = $.analysisId;
        this.awsAccountId = $.awsAccountId;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private GetQuicksightAnalysisArgs $;

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

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

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

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

        /**
         * @param awsAccountId AWS account ID.
         * 
         * @return builder
         * 
         */
        public Builder awsAccountId(@Nullable Output awsAccountId) {
            $.awsAccountId = awsAccountId;
            return this;
        }

        /**
         * @param awsAccountId AWS account ID.
         * 
         * @return builder
         * 
         */
        public Builder awsAccountId(String awsAccountId) {
            return awsAccountId(Output.of(awsAccountId));
        }

        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        public GetQuicksightAnalysisArgs build() {
            if ($.analysisId == null) {
                throw new MissingRequiredPropertyException("GetQuicksightAnalysisArgs", "analysisId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy