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

com.pulumi.azurenative.awsconnector.inputs.DataExportArgs Maven / Gradle / Ivy

// *** 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.azurenative.awsconnector.inputs;

import com.pulumi.azurenative.awsconnector.inputs.DestinationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of DataExport
 * 
 */
public final class DataExportArgs extends com.pulumi.resources.ResourceArgs {

    public static final DataExportArgs Empty = new DataExportArgs();

    /**
     * The place to store the data for an analysis. Specifies information about where to publish analysis or configuration results for an Amazon S3 bucket.
     * 
     */
    @Import(name="destination")
    private @Nullable Output destination;

    /**
     * @return The place to store the data for an analysis. Specifies information about where to publish analysis or configuration results for an Amazon S3 bucket.
     * 
     */
    public Optional> destination() {
        return Optional.ofNullable(this.destination);
    }

    /**
     * The version of the output schema to use when exporting data. Must be ``V_1``.
     * 
     */
    @Import(name="outputSchemaVersion")
    private @Nullable Output outputSchemaVersion;

    /**
     * @return The version of the output schema to use when exporting data. Must be ``V_1``.
     * 
     */
    public Optional> outputSchemaVersion() {
        return Optional.ofNullable(this.outputSchemaVersion);
    }

    private DataExportArgs() {}

    private DataExportArgs(DataExportArgs $) {
        this.destination = $.destination;
        this.outputSchemaVersion = $.outputSchemaVersion;
    }

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

    public static final class Builder {
        private DataExportArgs $;

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

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

        /**
         * @param destination The place to store the data for an analysis. Specifies information about where to publish analysis or configuration results for an Amazon S3 bucket.
         * 
         * @return builder
         * 
         */
        public Builder destination(@Nullable Output destination) {
            $.destination = destination;
            return this;
        }

        /**
         * @param destination The place to store the data for an analysis. Specifies information about where to publish analysis or configuration results for an Amazon S3 bucket.
         * 
         * @return builder
         * 
         */
        public Builder destination(DestinationArgs destination) {
            return destination(Output.of(destination));
        }

        /**
         * @param outputSchemaVersion The version of the output schema to use when exporting data. Must be ``V_1``.
         * 
         * @return builder
         * 
         */
        public Builder outputSchemaVersion(@Nullable Output outputSchemaVersion) {
            $.outputSchemaVersion = outputSchemaVersion;
            return this;
        }

        /**
         * @param outputSchemaVersion The version of the output schema to use when exporting data. Must be ``V_1``.
         * 
         * @return builder
         * 
         */
        public Builder outputSchemaVersion(String outputSchemaVersion) {
            return outputSchemaVersion(Output.of(outputSchemaVersion));
        }

        public DataExportArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy