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

com.pulumi.aws.route53.inputs.GetResolverFirewallConfigPlainArgs 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.route53.inputs;

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


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

    public static final GetResolverFirewallConfigPlainArgs Empty = new GetResolverFirewallConfigPlainArgs();

    /**
     * The ID of the VPC from Amazon VPC that the configuration is for.
     * 
     * The following attribute is additionally exported:
     * 
     */
    @Import(name="resourceId", required=true)
    private String resourceId;

    /**
     * @return The ID of the VPC from Amazon VPC that the configuration is for.
     * 
     * The following attribute is additionally exported:
     * 
     */
    public String resourceId() {
        return this.resourceId;
    }

    private GetResolverFirewallConfigPlainArgs() {}

    private GetResolverFirewallConfigPlainArgs(GetResolverFirewallConfigPlainArgs $) {
        this.resourceId = $.resourceId;
    }

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

    public static final class Builder {
        private GetResolverFirewallConfigPlainArgs $;

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

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

        /**
         * @param resourceId The ID of the VPC from Amazon VPC that the configuration is for.
         * 
         * The following attribute is additionally exported:
         * 
         * @return builder
         * 
         */
        public Builder resourceId(String resourceId) {
            $.resourceId = resourceId;
            return this;
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy