GetLocalGatewayVirtualInterfaceGroups
Provides details about multiple EC2 Local Gateway Virtual Interface Groups, such as identifiers. More information can be found in the Outposts User Guide.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var all = Output.Create(Aws.Ec2.GetLocalGatewayVirtualInterfaceGroups.InvokeAsync());
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ec2.GetLocalGatewayVirtualInterfaceGroups(ctx, nil, nil)
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
all = aws.ec2.get_local_gateway_virtual_interface_groups()import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const all = pulumi.output(aws.ec2.getLocalGatewayVirtualInterfaceGroups({ async: true }));Using GetLocalGatewayVirtualInterfaceGroups
function getLocalGatewayVirtualInterfaceGroups(args: GetLocalGatewayVirtualInterfaceGroupsArgs, opts?: InvokeOptions): Promise<GetLocalGatewayVirtualInterfaceGroupsResult>function get_local_gateway_virtual_interface_groups(filters=None, tags=None, opts=None)func GetLocalGatewayVirtualInterfaceGroups(ctx *Context, args *GetLocalGatewayVirtualInterfaceGroupsArgs, opts ...InvokeOption) (*GetLocalGatewayVirtualInterfaceGroupsResult, error)public static class GetLocalGatewayVirtualInterfaceGroups {
public static Task<GetLocalGatewayVirtualInterfaceGroupsResult> InvokeAsync(GetLocalGatewayVirtualInterfaceGroupsArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Filters
List<Get
Local Gateway Virtual Interface Groups Filter Args> One or more configuration blocks containing name-values filters. See the EC2 API Reference for supported filters. Detailed below.
- Dictionary<string, string>
Key-value map of resource tags, each pair of which must exactly match a pair on the desired local gateway route table.
- Filters
[]Get
Local Gateway Virtual Interface Groups Filter One or more configuration blocks containing name-values filters. See the EC2 API Reference for supported filters. Detailed below.
- map[string]string
Key-value map of resource tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
Get
Local Gateway Virtual Interface Groups Filter[] One or more configuration blocks containing name-values filters. See the EC2 API Reference for supported filters. Detailed below.
- {[key: string]: string}
Key-value map of resource tags, each pair of which must exactly match a pair on the desired local gateway route table.
- filters
List[Get
Local Gateway Virtual Interface Groups Filter] One or more configuration blocks containing name-values filters. See the EC2 API Reference for supported filters. Detailed below.
- Dict[str, str]
Key-value map of resource tags, each pair of which must exactly match a pair on the desired local gateway route table.
GetLocalGatewayVirtualInterfaceGroups Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
Set of EC2 Local Gateway Virtual Interface Group identifiers.
- Local
Gateway List<string>Virtual Interface Ids Set of EC2 Local Gateway Virtual Interface identifiers.
- Dictionary<string, string>
- Filters
List<Get
Local Gateway Virtual Interface Groups Filter>
- Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
Set of EC2 Local Gateway Virtual Interface Group identifiers.
- Local
Gateway []stringVirtual Interface Ids Set of EC2 Local Gateway Virtual Interface identifiers.
- map[string]string
- Filters
[]Get
Local Gateway Virtual Interface Groups Filter
- id string
The provider-assigned unique ID for this managed resource.
- ids string[]
Set of EC2 Local Gateway Virtual Interface Group identifiers.
- local
Gateway string[]Virtual Interface Ids Set of EC2 Local Gateway Virtual Interface identifiers.
- {[key: string]: string}
- filters
Get
Local Gateway Virtual Interface Groups Filter[]
- id str
The provider-assigned unique ID for this managed resource.
- ids List[str]
Set of EC2 Local Gateway Virtual Interface Group identifiers.
- local_
gateway_ List[str]virtual_ interface_ ids Set of EC2 Local Gateway Virtual Interface identifiers.
- Dict[str, str]
- filters
List[Get
Local Gateway Virtual Interface Groups Filter]
Supporting Types
GetLocalGatewayVirtualInterfaceGroupsFilter
- Name string
Name of the filter.
- Values List<string>
List of one or more values for the filter.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.