aws.ec2.getLocalGateway
Explore with Pulumi AI
Provides details about an EC2 Local Gateway.
Example Usage
The following example shows how one might accept a local gateway id as a variable.
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const config = new pulumi.Config();
const localGatewayId = config.requireObject<any>("localGatewayId");
const selected = aws.ec2.getLocalGateway({
id: localGatewayId,
});
import pulumi
import pulumi_aws as aws
config = pulumi.Config()
local_gateway_id = config.require_object("localGatewayId")
selected = aws.ec2.get_local_gateway(id=local_gateway_id)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
localGatewayId := cfg.RequireObject("localGatewayId")
_, err := ec2.GetLocalGateway(ctx, &ec2.GetLocalGatewayArgs{
Id: pulumi.StringRef(localGatewayId),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var localGatewayId = config.RequireObject<dynamic>("localGatewayId");
var selected = Aws.Ec2.GetLocalGateway.Invoke(new()
{
Id = localGatewayId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.Ec2Functions;
import com.pulumi.aws.ec2.inputs.GetLocalGatewayArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var localGatewayId = config.get("localGatewayId");
final var selected = Ec2Functions.getLocalGateway(GetLocalGatewayArgs.builder()
.id(localGatewayId)
.build());
}
}
configuration:
localGatewayId:
type: dynamic
variables:
selected:
fn::invoke:
function: aws:ec2:getLocalGateway
arguments:
id: ${localGatewayId}
Using getLocalGateway
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLocalGateway(args: GetLocalGatewayArgs, opts?: InvokeOptions): Promise<GetLocalGatewayResult>
function getLocalGatewayOutput(args: GetLocalGatewayOutputArgs, opts?: InvokeOptions): Output<GetLocalGatewayResult>
def get_local_gateway(filters: Optional[Sequence[GetLocalGatewayFilter]] = None,
id: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetLocalGatewayResult
def get_local_gateway_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetLocalGatewayFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLocalGatewayResult]
func GetLocalGateway(ctx *Context, args *GetLocalGatewayArgs, opts ...InvokeOption) (*GetLocalGatewayResult, error)
func GetLocalGatewayOutput(ctx *Context, args *GetLocalGatewayOutputArgs, opts ...InvokeOption) GetLocalGatewayResultOutput
> Note: This function is named GetLocalGateway
in the Go SDK.
public static class GetLocalGateway
{
public static Task<GetLocalGatewayResult> InvokeAsync(GetLocalGatewayArgs args, InvokeOptions? opts = null)
public static Output<GetLocalGatewayResult> Invoke(GetLocalGatewayInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLocalGatewayResult> getLocalGateway(GetLocalGatewayArgs args, InvokeOptions options)
public static Output<GetLocalGatewayResult> getLocalGateway(GetLocalGatewayArgs args, InvokeOptions options)
fn::invoke:
function: aws:ec2/getLocalGateway:getLocalGateway
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Local Gateway Filter> - Custom filter block as described below.
- Id string
- Id of the specific Local Gateway to retrieve.
- State string
- Current state of the desired Local Gateway.
Can be either
"pending"
or"available"
. - Dictionary<string, string>
Mapping of tags, each pair of which must exactly match a pair on the desired Local Gateway.
The arguments of this data source act as filters for querying the available Local Gateways in the current region. The given filters must match exactly one Local Gateway whose data will be exported as attributes.
- Filters
[]Get
Local Gateway Filter - Custom filter block as described below.
- Id string
- Id of the specific Local Gateway to retrieve.
- State string
- Current state of the desired Local Gateway.
Can be either
"pending"
or"available"
. - map[string]string
Mapping of tags, each pair of which must exactly match a pair on the desired Local Gateway.
The arguments of this data source act as filters for querying the available Local Gateways in the current region. The given filters must match exactly one Local Gateway whose data will be exported as attributes.
- filters
List<Get
Local Gateway Filter> - Custom filter block as described below.
- id String
- Id of the specific Local Gateway to retrieve.
- state String
- Current state of the desired Local Gateway.
Can be either
"pending"
or"available"
. - Map<String,String>
Mapping of tags, each pair of which must exactly match a pair on the desired Local Gateway.
The arguments of this data source act as filters for querying the available Local Gateways in the current region. The given filters must match exactly one Local Gateway whose data will be exported as attributes.
- filters
Get
Local Gateway Filter[] - Custom filter block as described below.
- id string
- Id of the specific Local Gateway to retrieve.
- state string
- Current state of the desired Local Gateway.
Can be either
"pending"
or"available"
. - {[key: string]: string}
Mapping of tags, each pair of which must exactly match a pair on the desired Local Gateway.
The arguments of this data source act as filters for querying the available Local Gateways in the current region. The given filters must match exactly one Local Gateway whose data will be exported as attributes.
- filters
Sequence[Get
Local Gateway Filter] - Custom filter block as described below.
- id str
- Id of the specific Local Gateway to retrieve.
- state str
- Current state of the desired Local Gateway.
Can be either
"pending"
or"available"
. - Mapping[str, str]
Mapping of tags, each pair of which must exactly match a pair on the desired Local Gateway.
The arguments of this data source act as filters for querying the available Local Gateways in the current region. The given filters must match exactly one Local Gateway whose data will be exported as attributes.
- filters List<Property Map>
- Custom filter block as described below.
- id String
- Id of the specific Local Gateway to retrieve.
- state String
- Current state of the desired Local Gateway.
Can be either
"pending"
or"available"
. - Map<String>
Mapping of tags, each pair of which must exactly match a pair on the desired Local Gateway.
The arguments of this data source act as filters for querying the available Local Gateways in the current region. The given filters must match exactly one Local Gateway whose data will be exported as attributes.
getLocalGateway Result
The following output properties are available:
- Id string
- Outpost
Arn string - ARN of Outpost
- Owner
Id string - AWS account identifier that owns the Local Gateway.
- State string
- State of the local gateway.
- Dictionary<string, string>
- Filters
List<Get
Local Gateway Filter>
- Id string
- Outpost
Arn string - ARN of Outpost
- Owner
Id string - AWS account identifier that owns the Local Gateway.
- State string
- State of the local gateway.
- map[string]string
- Filters
[]Get
Local Gateway Filter
- id String
- outpost
Arn String - ARN of Outpost
- owner
Id String - AWS account identifier that owns the Local Gateway.
- state String
- State of the local gateway.
- Map<String,String>
- filters
List<Get
Local Gateway Filter>
- id string
- outpost
Arn string - ARN of Outpost
- owner
Id string - AWS account identifier that owns the Local Gateway.
- state string
- State of the local gateway.
- {[key: string]: string}
- filters
Get
Local Gateway Filter[]
- id str
- outpost_
arn str - ARN of Outpost
- owner_
id str - AWS account identifier that owns the Local Gateway.
- state str
- State of the local gateway.
- Mapping[str, str]
- filters
Sequence[Get
Local Gateway Filter]
- id String
- outpost
Arn String - ARN of Outpost
- owner
Id String - AWS account identifier that owns the Local Gateway.
- state String
- State of the local gateway.
- Map<String>
- filters List<Property Map>
Supporting Types
GetLocalGatewayFilter
- Name string
- 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 will be selected if any one of the given values matches.
- Name string
- 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 will be selected if any one of the given values matches.
- name String
- 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 will be selected if any one of the given values matches.
- name string
- 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 will be selected if any one of the given values matches.
- name str
- Name of the field to filter by, as defined by the underlying AWS API.
- values Sequence[str]
- Set of values that are accepted for the given field. A Local Gateway will be selected if any one of the given values matches.
- name String
- 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 will be selected if any one of the given values matches.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.