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<GetLocalGatewayRouteTablesFilterArgs>

Custom filter block as described below.

Tags Dictionary<string, string>

A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.

Filters []GetLocalGatewayRouteTablesFilter

Custom filter block as described below.

Tags map[string]string

A mapping of tags, each pair of which must exactly match a pair on the desired local gateway route table.

filters GetLocalGatewayRouteTablesFilter[]

Custom filter block as described below.

tags {[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[GetLocalGatewayRouteTablesFilter]

Custom filter block as described below.

tags 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

Tags Dictionary<string, string>
Filters List<GetLocalGatewayRouteTablesFilter>
Id string

The provider-assigned unique ID for this managed resource.

Ids []string

Set of Local Gateway Route Table identifiers

Tags map[string]string
Filters []GetLocalGatewayRouteTablesFilter
id string

The provider-assigned unique ID for this managed resource.

ids string[]

Set of Local Gateway Route Table identifiers

tags {[key: string]: string}
filters GetLocalGatewayRouteTablesFilter[]
id str

The provider-assigned unique ID for this managed resource.

ids List[str]

Set of Local Gateway Route Table identifiers

tags Dict[str, str]
filters List[GetLocalGatewayRouteTablesFilter]

Supporting Types

GetLocalGatewayRouteTablesFilter

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

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 aws Terraform Provider.