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

com.pulumi.aws.opensearch.inputs.GetServerlessVpcEndpointPlainArgs 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.aws.opensearch.inputs;

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


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

    public static final GetServerlessVpcEndpointPlainArgs Empty = new GetServerlessVpcEndpointPlainArgs();

    /**
     * The unique identifier of the endpoint.
     * 
     */
    @Import(name="vpcEndpointId", required=true)
    private String vpcEndpointId;

    /**
     * @return The unique identifier of the endpoint.
     * 
     */
    public String vpcEndpointId() {
        return this.vpcEndpointId;
    }

    private GetServerlessVpcEndpointPlainArgs() {}

    private GetServerlessVpcEndpointPlainArgs(GetServerlessVpcEndpointPlainArgs $) {
        this.vpcEndpointId = $.vpcEndpointId;
    }

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

    public static final class Builder {
        private GetServerlessVpcEndpointPlainArgs $;

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

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

        /**
         * @param vpcEndpointId The unique identifier of the endpoint.
         * 
         * @return builder
         * 
         */
        public Builder vpcEndpointId(String vpcEndpointId) {
            $.vpcEndpointId = vpcEndpointId;
            return this;
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy