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

com.pulumi.azurenative.awsconnector.inputs.VPCDerivedInfoArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.azurenative.awsconnector.inputs;

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


/**
 * Definition of VPCDerivedInfo
 * 
 */
public final class VPCDerivedInfoArgs extends com.pulumi.resources.ResourceArgs {

    public static final VPCDerivedInfoArgs Empty = new VPCDerivedInfoArgs();

    /**
     * <p>The list of Availability Zones associated with the VPC subnets.</p>
     * 
     */
    @Import(name="availabilityZones")
    private @Nullable Output> availabilityZones;

    /**
     * @return <p>The list of Availability Zones associated with the VPC subnets.</p>
     * 
     */
    public Optional>> availabilityZones() {
        return Optional.ofNullable(this.availabilityZones);
    }

    /**
     * <p>The list of security group IDs associated with the VPC endpoints for the domain.</p>
     * 
     */
    @Import(name="securityGroupIds")
    private @Nullable Output> securityGroupIds;

    /**
     * @return <p>The list of security group IDs associated with the VPC endpoints for the domain.</p>
     * 
     */
    public Optional>> securityGroupIds() {
        return Optional.ofNullable(this.securityGroupIds);
    }

    /**
     * <p>A list of subnet IDs associated with the VPC endpoints for the domain.</p>
     * 
     */
    @Import(name="subnetIds")
    private @Nullable Output> subnetIds;

    /**
     * @return <p>A list of subnet IDs associated with the VPC endpoints for the domain.</p>
     * 
     */
    public Optional>> subnetIds() {
        return Optional.ofNullable(this.subnetIds);
    }

    /**
     * <p>The ID for your VPC. Amazon VPC generates this value when you create a VPC.</p>
     * 
     */
    @Import(name="vpcId")
    private @Nullable Output vpcId;

    /**
     * @return <p>The ID for your VPC. Amazon VPC generates this value when you create a VPC.</p>
     * 
     */
    public Optional> vpcId() {
        return Optional.ofNullable(this.vpcId);
    }

    private VPCDerivedInfoArgs() {}

    private VPCDerivedInfoArgs(VPCDerivedInfoArgs $) {
        this.availabilityZones = $.availabilityZones;
        this.securityGroupIds = $.securityGroupIds;
        this.subnetIds = $.subnetIds;
        this.vpcId = $.vpcId;
    }

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

    public static final class Builder {
        private VPCDerivedInfoArgs $;

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

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

        /**
         * @param availabilityZones <p>The list of Availability Zones associated with the VPC subnets.</p>
         * 
         * @return builder
         * 
         */
        public Builder availabilityZones(@Nullable Output> availabilityZones) {
            $.availabilityZones = availabilityZones;
            return this;
        }

        /**
         * @param availabilityZones <p>The list of Availability Zones associated with the VPC subnets.</p>
         * 
         * @return builder
         * 
         */
        public Builder availabilityZones(List availabilityZones) {
            return availabilityZones(Output.of(availabilityZones));
        }

        /**
         * @param availabilityZones <p>The list of Availability Zones associated with the VPC subnets.</p>
         * 
         * @return builder
         * 
         */
        public Builder availabilityZones(String... availabilityZones) {
            return availabilityZones(List.of(availabilityZones));
        }

        /**
         * @param securityGroupIds <p>The list of security group IDs associated with the VPC endpoints for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder securityGroupIds(@Nullable Output> securityGroupIds) {
            $.securityGroupIds = securityGroupIds;
            return this;
        }

        /**
         * @param securityGroupIds <p>The list of security group IDs associated with the VPC endpoints for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder securityGroupIds(List securityGroupIds) {
            return securityGroupIds(Output.of(securityGroupIds));
        }

        /**
         * @param securityGroupIds <p>The list of security group IDs associated with the VPC endpoints for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder securityGroupIds(String... securityGroupIds) {
            return securityGroupIds(List.of(securityGroupIds));
        }

        /**
         * @param subnetIds <p>A list of subnet IDs associated with the VPC endpoints for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder subnetIds(@Nullable Output> subnetIds) {
            $.subnetIds = subnetIds;
            return this;
        }

        /**
         * @param subnetIds <p>A list of subnet IDs associated with the VPC endpoints for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder subnetIds(List subnetIds) {
            return subnetIds(Output.of(subnetIds));
        }

        /**
         * @param subnetIds <p>A list of subnet IDs associated with the VPC endpoints for the domain.</p>
         * 
         * @return builder
         * 
         */
        public Builder subnetIds(String... subnetIds) {
            return subnetIds(List.of(subnetIds));
        }

        /**
         * @param vpcId <p>The ID for your VPC. Amazon VPC generates this value when you create a VPC.</p>
         * 
         * @return builder
         * 
         */
        public Builder vpcId(@Nullable Output vpcId) {
            $.vpcId = vpcId;
            return this;
        }

        /**
         * @param vpcId <p>The ID for your VPC. Amazon VPC generates this value when you create a VPC.</p>
         * 
         * @return builder
         * 
         */
        public Builder vpcId(String vpcId) {
            return vpcId(Output.of(vpcId));
        }

        public VPCDerivedInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy