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

com.pulumi.aws.apprunner.inputs.VpcIngressConnectionIngressVpcConfigurationArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

The 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.apprunner.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final VpcIngressConnectionIngressVpcConfigurationArgs Empty = new VpcIngressConnectionIngressVpcConfigurationArgs();

    /**
     * The ID of the VPC endpoint that your App Runner service connects to.
     * 
     */
    @Import(name="vpcEndpointId")
    private @Nullable Output vpcEndpointId;

    /**
     * @return The ID of the VPC endpoint that your App Runner service connects to.
     * 
     */
    public Optional> vpcEndpointId() {
        return Optional.ofNullable(this.vpcEndpointId);
    }

    /**
     * The ID of the VPC that is used for the VPC endpoint.
     * 
     */
    @Import(name="vpcId")
    private @Nullable Output vpcId;

    /**
     * @return The ID of the VPC that is used for the VPC endpoint.
     * 
     */
    public Optional> vpcId() {
        return Optional.ofNullable(this.vpcId);
    }

    private VpcIngressConnectionIngressVpcConfigurationArgs() {}

    private VpcIngressConnectionIngressVpcConfigurationArgs(VpcIngressConnectionIngressVpcConfigurationArgs $) {
        this.vpcEndpointId = $.vpcEndpointId;
        this.vpcId = $.vpcId;
    }

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

    public static final class Builder {
        private VpcIngressConnectionIngressVpcConfigurationArgs $;

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

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

        /**
         * @param vpcEndpointId The ID of the VPC endpoint that your App Runner service connects to.
         * 
         * @return builder
         * 
         */
        public Builder vpcEndpointId(@Nullable Output vpcEndpointId) {
            $.vpcEndpointId = vpcEndpointId;
            return this;
        }

        /**
         * @param vpcEndpointId The ID of the VPC endpoint that your App Runner service connects to.
         * 
         * @return builder
         * 
         */
        public Builder vpcEndpointId(String vpcEndpointId) {
            return vpcEndpointId(Output.of(vpcEndpointId));
        }

        /**
         * @param vpcId The ID of the VPC that is used for the VPC endpoint.
         * 
         * @return builder
         * 
         */
        public Builder vpcId(@Nullable Output vpcId) {
            $.vpcId = vpcId;
            return this;
        }

        /**
         * @param vpcId The ID of the VPC that is used for the VPC endpoint.
         * 
         * @return builder
         * 
         */
        public Builder vpcId(String vpcId) {
            return vpcId(Output.of(vpcId));
        }

        public VpcIngressConnectionIngressVpcConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy