
com.pulumi.aws.opensearch.inputs.GetServerlessVpcEndpointArgs 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetServerlessVpcEndpointArgs extends com.pulumi.resources.InvokeArgs {
public static final GetServerlessVpcEndpointArgs Empty = new GetServerlessVpcEndpointArgs();
/**
* The unique identifier of the endpoint.
*
*/
@Import(name="vpcEndpointId", required=true)
private Output vpcEndpointId;
/**
* @return The unique identifier of the endpoint.
*
*/
public Output vpcEndpointId() {
return this.vpcEndpointId;
}
private GetServerlessVpcEndpointArgs() {}
private GetServerlessVpcEndpointArgs(GetServerlessVpcEndpointArgs $) {
this.vpcEndpointId = $.vpcEndpointId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetServerlessVpcEndpointArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetServerlessVpcEndpointArgs $;
public Builder() {
$ = new GetServerlessVpcEndpointArgs();
}
public Builder(GetServerlessVpcEndpointArgs defaults) {
$ = new GetServerlessVpcEndpointArgs(Objects.requireNonNull(defaults));
}
/**
* @param vpcEndpointId The unique identifier of the endpoint.
*
* @return builder
*
*/
public Builder vpcEndpointId(Output vpcEndpointId) {
$.vpcEndpointId = vpcEndpointId;
return this;
}
/**
* @param vpcEndpointId The unique identifier of the endpoint.
*
* @return builder
*
*/
public Builder vpcEndpointId(String vpcEndpointId) {
return vpcEndpointId(Output.of(vpcEndpointId));
}
public GetServerlessVpcEndpointArgs build() {
if ($.vpcEndpointId == null) {
throw new MissingRequiredPropertyException("GetServerlessVpcEndpointArgs", "vpcEndpointId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy