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

com.pulumi.aws.networkfirewall.inputs.FirewallFirewallStatusSyncStateAttachmentArgs Maven / Gradle / Ivy

Go to download

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

There is a newer version: 6.60.0-alpha.1731982519
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.aws.networkfirewall.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 FirewallFirewallStatusSyncStateAttachmentArgs extends com.pulumi.resources.ResourceArgs {

    public static final FirewallFirewallStatusSyncStateAttachmentArgs Empty = new FirewallFirewallStatusSyncStateAttachmentArgs();

    /**
     * The identifier of the firewall endpoint that AWS Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint.
     * 
     */
    @Import(name="endpointId")
    private @Nullable Output endpointId;

    /**
     * @return The identifier of the firewall endpoint that AWS Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint.
     * 
     */
    public Optional> endpointId() {
        return Optional.ofNullable(this.endpointId);
    }

    /**
     * The unique identifier of the subnet that you've specified to be used for a firewall endpoint.
     * 
     */
    @Import(name="subnetId")
    private @Nullable Output subnetId;

    /**
     * @return The unique identifier of the subnet that you've specified to be used for a firewall endpoint.
     * 
     */
    public Optional> subnetId() {
        return Optional.ofNullable(this.subnetId);
    }

    private FirewallFirewallStatusSyncStateAttachmentArgs() {}

    private FirewallFirewallStatusSyncStateAttachmentArgs(FirewallFirewallStatusSyncStateAttachmentArgs $) {
        this.endpointId = $.endpointId;
        this.subnetId = $.subnetId;
    }

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

    public static final class Builder {
        private FirewallFirewallStatusSyncStateAttachmentArgs $;

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

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

        /**
         * @param endpointId The identifier of the firewall endpoint that AWS Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint.
         * 
         * @return builder
         * 
         */
        public Builder endpointId(@Nullable Output endpointId) {
            $.endpointId = endpointId;
            return this;
        }

        /**
         * @param endpointId The identifier of the firewall endpoint that AWS Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint.
         * 
         * @return builder
         * 
         */
        public Builder endpointId(String endpointId) {
            return endpointId(Output.of(endpointId));
        }

        /**
         * @param subnetId The unique identifier of the subnet that you've specified to be used for a firewall endpoint.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(@Nullable Output subnetId) {
            $.subnetId = subnetId;
            return this;
        }

        /**
         * @param subnetId The unique identifier of the subnet that you've specified to be used for a firewall endpoint.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(String subnetId) {
            return subnetId(Output.of(subnetId));
        }

        public FirewallFirewallStatusSyncStateAttachmentArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy