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

com.pulumi.aws.quicksight.inputs.DataSourceVpcConnectionPropertiesArgs 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.Objects;


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

    public static final DataSourceVpcConnectionPropertiesArgs Empty = new DataSourceVpcConnectionPropertiesArgs();

    /**
     * The Amazon Resource Name (ARN) for the VPC connection.
     * 
     */
    @Import(name="vpcConnectionArn", required=true)
    private Output vpcConnectionArn;

    /**
     * @return The Amazon Resource Name (ARN) for the VPC connection.
     * 
     */
    public Output vpcConnectionArn() {
        return this.vpcConnectionArn;
    }

    private DataSourceVpcConnectionPropertiesArgs() {}

    private DataSourceVpcConnectionPropertiesArgs(DataSourceVpcConnectionPropertiesArgs $) {
        this.vpcConnectionArn = $.vpcConnectionArn;
    }

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

    public static final class Builder {
        private DataSourceVpcConnectionPropertiesArgs $;

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

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

        /**
         * @param vpcConnectionArn The Amazon Resource Name (ARN) for the VPC connection.
         * 
         * @return builder
         * 
         */
        public Builder vpcConnectionArn(Output vpcConnectionArn) {
            $.vpcConnectionArn = vpcConnectionArn;
            return this;
        }

        /**
         * @param vpcConnectionArn The Amazon Resource Name (ARN) for the VPC connection.
         * 
         * @return builder
         * 
         */
        public Builder vpcConnectionArn(String vpcConnectionArn) {
            return vpcConnectionArn(Output.of(vpcConnectionArn));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy