GetLocalGatewayRouteTables
Provides information for multiple EC2 Local Gateway Route Tables, such as their identifiers.
Example Usage
Coming soon!
Coming soon!
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const fooLocalGatewayRouteTable = pulumi.output(aws.ec2.getLocalGatewayRouteTable({ async: true }));
export const foo = fooLocalGatewayRouteTable.ids;Using GetLocalGatewayRouteTables
function getLocalGatewayRouteTables(args: GetLocalGatewayRouteTablesArgs, opts?: InvokeOptions): Promise<GetLocalGatewayRouteTablesResult>function get_local_gateway_route_tables(filters=None, tags=None, opts=None)func GetLocalGatewayRouteTables(ctx *Context, args *GetLocalGatewayRouteTablesArgs, opts ...InvokeOption) (*GetLocalGatewayRouteTablesResult, error)public static class GetLocalGatewayRouteTables {
public static Task<GetLocalGatewayRouteTablesResult> InvokeAsync(GetLocalGatewayRouteTablesArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Filters
List<Get
Local Gateway Route Tables Filter Args> Custom filter block as described below.
- Dictionary<string, string>
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- Filters
[]Get
Local Gateway Route Tables Filter Custom filter block as described below.
- map[string]string
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
Get
Local Gateway Route Tables Filter[] Custom filter block as described below.
- {[key: string]: string}
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
List[Get
Local Gateway Route Tables Filter] Custom filter block as described below.
- Dict[str, str]
A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.
GetLocalGatewayRouteTables Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
Set of Local Gateway Route Table identifiers
- Dictionary<string, string>
- Filters
List<Get
Local Gateway Route Tables Filter>
Supporting Types
GetLocalGatewayRouteTablesFilter
- Name string
The name of the field to filter by, as defined by the underlying AWS API.
- Values List<string>
Set of values that are accepted for the given field. A Local Gateway Route Table will be selected if any one of the given values matches.
- Name string
The name of the field to filter by, as defined by the underlying AWS API.
- Values []string
Set of values that are accepted for the given field. A Local Gateway Route Table will be selected if any one of the given values matches.
- name string
The name of the field to filter by, as defined by the underlying AWS API.
- values string[]
Set of values that are accepted for the given field. A Local Gateway Route Table will be selected if any one of the given values matches.
- name str
The name of the field to filter by, as defined by the underlying AWS API.
- values List[str]
Set of values that are accepted for the given field. A Local Gateway Route Table will be selected if any one of the given values matches.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.