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

com.pulumi.aws.ec2.inputs.GetLocalGatewayRouteTablePlainArgs 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.66.3
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.ec2.inputs;

import com.pulumi.aws.ec2.inputs.GetLocalGatewayRouteTableFilter;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final GetLocalGatewayRouteTablePlainArgs Empty = new GetLocalGatewayRouteTablePlainArgs();

    @Import(name="filters")
    private @Nullable List filters;

    public Optional> filters() {
        return Optional.ofNullable(this.filters);
    }

    /**
     * ID of the specific local gateway route table to retrieve.
     * 
     */
    @Import(name="localGatewayId")
    private @Nullable String localGatewayId;

    /**
     * @return ID of the specific local gateway route table to retrieve.
     * 
     */
    public Optional localGatewayId() {
        return Optional.ofNullable(this.localGatewayId);
    }

    /**
     * Local Gateway Route Table Id assigned to desired local gateway route table
     * 
     */
    @Import(name="localGatewayRouteTableId")
    private @Nullable String localGatewayRouteTableId;

    /**
     * @return Local Gateway Route Table Id assigned to desired local gateway route table
     * 
     */
    public Optional localGatewayRouteTableId() {
        return Optional.ofNullable(this.localGatewayRouteTableId);
    }

    /**
     * ARN of the Outpost the local gateway route table is associated with.
     * 
     */
    @Import(name="outpostArn")
    private @Nullable String outpostArn;

    /**
     * @return ARN of the Outpost the local gateway route table is associated with.
     * 
     */
    public Optional outpostArn() {
        return Optional.ofNullable(this.outpostArn);
    }

    /**
     * State of the local gateway route table.
     * 
     */
    @Import(name="state")
    private @Nullable String state;

    /**
     * @return State of the local gateway route table.
     * 
     */
    public Optional state() {
        return Optional.ofNullable(this.state);
    }

    /**
     * Mapping of tags, each pair of which must exactly match
     * a pair on the desired local gateway route table.
     * 
     * More complex filters can be expressed using one or more `filter` sub-blocks,
     * which take the following arguments:
     * 
     */
    @Import(name="tags")
    private @Nullable Map tags;

    /**
     * @return Mapping of tags, each pair of which must exactly match
     * a pair on the desired local gateway route table.
     * 
     * More complex filters can be expressed using one or more `filter` sub-blocks,
     * which take the following arguments:
     * 
     */
    public Optional> tags() {
        return Optional.ofNullable(this.tags);
    }

    private GetLocalGatewayRouteTablePlainArgs() {}

    private GetLocalGatewayRouteTablePlainArgs(GetLocalGatewayRouteTablePlainArgs $) {
        this.filters = $.filters;
        this.localGatewayId = $.localGatewayId;
        this.localGatewayRouteTableId = $.localGatewayRouteTableId;
        this.outpostArn = $.outpostArn;
        this.state = $.state;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private GetLocalGatewayRouteTablePlainArgs $;

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

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

        public Builder filters(@Nullable List filters) {
            $.filters = filters;
            return this;
        }

        public Builder filters(GetLocalGatewayRouteTableFilter... filters) {
            return filters(List.of(filters));
        }

        /**
         * @param localGatewayId ID of the specific local gateway route table to retrieve.
         * 
         * @return builder
         * 
         */
        public Builder localGatewayId(@Nullable String localGatewayId) {
            $.localGatewayId = localGatewayId;
            return this;
        }

        /**
         * @param localGatewayRouteTableId Local Gateway Route Table Id assigned to desired local gateway route table
         * 
         * @return builder
         * 
         */
        public Builder localGatewayRouteTableId(@Nullable String localGatewayRouteTableId) {
            $.localGatewayRouteTableId = localGatewayRouteTableId;
            return this;
        }

        /**
         * @param outpostArn ARN of the Outpost the local gateway route table is associated with.
         * 
         * @return builder
         * 
         */
        public Builder outpostArn(@Nullable String outpostArn) {
            $.outpostArn = outpostArn;
            return this;
        }

        /**
         * @param state State of the local gateway route table.
         * 
         * @return builder
         * 
         */
        public Builder state(@Nullable String state) {
            $.state = state;
            return this;
        }

        /**
         * @param tags Mapping of tags, each pair of which must exactly match
         * a pair on the desired local gateway route table.
         * 
         * More complex filters can be expressed using one or more `filter` sub-blocks,
         * which take the following arguments:
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Map tags) {
            $.tags = tags;
            return this;
        }

        public GetLocalGatewayRouteTablePlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy