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

com.pulumi.aws.bcmdata.inputs.ExportState 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.bcmdata.inputs;

import com.pulumi.aws.bcmdata.inputs.ExportExportArgs;
import com.pulumi.aws.bcmdata.inputs.ExportTimeoutsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final ExportState Empty = new ExportState();

    /**
     * The details of the export, including data query, name, description, and destination configuration.  See the `export` argument reference below.
     * 
     */
    @Import(name="export")
    private @Nullable Output export;

    /**
     * @return The details of the export, including data query, name, description, and destination configuration.  See the `export` argument reference below.
     * 
     */
    public Optional> export() {
        return Optional.ofNullable(this.export);
    }

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

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

    /**
     * @deprecated
     * Please use `tags` instead.
     * 
     */
    @Deprecated /* Please use `tags` instead. */
    @Import(name="tagsAll")
    private @Nullable Output> tagsAll;

    /**
     * @deprecated
     * Please use `tags` instead.
     * 
     */
    @Deprecated /* Please use `tags` instead. */
    public Optional>> tagsAll() {
        return Optional.ofNullable(this.tagsAll);
    }

    @Import(name="timeouts")
    private @Nullable Output timeouts;

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

    private ExportState() {}

    private ExportState(ExportState $) {
        this.export = $.export;
        this.tags = $.tags;
        this.tagsAll = $.tagsAll;
        this.timeouts = $.timeouts;
    }

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

    public static final class Builder {
        private ExportState $;

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

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

        /**
         * @param export The details of the export, including data query, name, description, and destination configuration.  See the `export` argument reference below.
         * 
         * @return builder
         * 
         */
        public Builder export(@Nullable Output export) {
            $.export = export;
            return this;
        }

        /**
         * @param export The details of the export, including data query, name, description, and destination configuration.  See the `export` argument reference below.
         * 
         * @return builder
         * 
         */
        public Builder export(ExportExportArgs export) {
            return export(Output.of(export));
        }

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

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

        /**
         * @return builder
         * 
         * @deprecated
         * Please use `tags` instead.
         * 
         */
        @Deprecated /* Please use `tags` instead. */
        public Builder tagsAll(@Nullable Output> tagsAll) {
            $.tagsAll = tagsAll;
            return this;
        }

        /**
         * @return builder
         * 
         * @deprecated
         * Please use `tags` instead.
         * 
         */
        @Deprecated /* Please use `tags` instead. */
        public Builder tagsAll(Map tagsAll) {
            return tagsAll(Output.of(tagsAll));
        }

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

        public Builder timeouts(ExportTimeoutsArgs timeouts) {
            return timeouts(Output.of(timeouts));
        }

        public ExportState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy