
com.pulumi.aws.apigateway.inputs.GetVpcLinkArgs 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.apigateway.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetVpcLinkArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVpcLinkArgs Empty = new GetVpcLinkArgs();
/**
* Name of the API Gateway VPC Link to look up. If no API Gateway VPC Link is found with this name, an error will be returned.
* If multiple API Gateway VPC Links are found with this name, an error will be returned.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return Name of the API Gateway VPC Link to look up. If no API Gateway VPC Link is found with this name, an error will be returned.
* If multiple API Gateway VPC Links are found with this name, an error will be returned.
*
*/
public Output name() {
return this.name;
}
/**
* Key-value map of resource tags
*
*/
@Import(name="tags")
private @Nullable Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy