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

com.pulumi.aws.quicksight.inputs.GetAnalysisArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

The 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 GetAnalysisArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetAnalysisArgs Empty = new GetAnalysisArgs();

    /**
     * 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 GetAnalysisArgs() {}

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

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

    public static final class Builder {
        private GetAnalysisArgs $;

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

        public Builder(GetAnalysisArgs defaults) {
            $ = new GetAnalysisArgs(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 GetAnalysisArgs build() {
            if ($.analysisId == null) {
                throw new MissingRequiredPropertyException("GetAnalysisArgs", "analysisId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy