UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

33 lines (32 loc) 991 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Specifies a customer gateway. */ export declare function getCustomerGateway(args: GetCustomerGatewayArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomerGatewayResult>; export interface GetCustomerGatewayArgs { /** * The ID of the customer gateway. */ customerGatewayId: string; } export interface GetCustomerGatewayResult { /** * The ID of the customer gateway. */ readonly customerGatewayId?: string; /** * One or more tags for the customer gateway. */ readonly tags?: outputs.Tag[]; } /** * Specifies a customer gateway. */ export declare function getCustomerGatewayOutput(args: GetCustomerGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomerGatewayResult>; export interface GetCustomerGatewayOutputArgs { /** * The ID of the customer gateway. */ customerGatewayId: pulumi.Input<string>; }