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

com.pulumi.aws.rds.inputs.GetProxyPlainArgs 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.66.3
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.rds.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetProxyPlainArgs Empty = new GetProxyPlainArgs();

    /**
     * Name of the DB proxy.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return Name of the DB proxy.
     * 
     */
    public String name() {
        return this.name;
    }

    private GetProxyPlainArgs() {}

    private GetProxyPlainArgs(GetProxyPlainArgs $) {
        this.name = $.name;
    }

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

    public static final class Builder {
        private GetProxyPlainArgs $;

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

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

        /**
         * @param name Name of the DB proxy.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            $.name = name;
            return this;
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy