com.pulumi.aws.ec2.inputs.GetLocalGatewayRouteTablePlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy