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)

65 lines (64 loc) 2.7 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Specifies a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself. * For more information, see [](https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html) in the *User Guide*. */ export declare class VpnGateway extends pulumi.CustomResource { /** * Get an existing VpnGateway resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): VpnGateway; /** * Returns true if the given object is an instance of VpnGateway. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VpnGateway; /** * The private Autonomous System Number (ASN) for the Amazon side of a BGP session. */ readonly amazonSideAsn: pulumi.Output<number | undefined>; /** * Any tags assigned to the virtual private gateway. */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * The type of VPN connection the virtual private gateway supports. */ readonly type: pulumi.Output<string>; /** * The ID of the VPN gateway. */ readonly vpnGatewayId: pulumi.Output<string>; /** * Create a VpnGateway resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VpnGatewayArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a VpnGateway resource. */ export interface VpnGatewayArgs { /** * The private Autonomous System Number (ASN) for the Amazon side of a BGP session. */ amazonSideAsn?: pulumi.Input<number>; /** * Any tags assigned to the virtual private gateway. */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; /** * The type of VPN connection the virtual private gateway supports. */ type: pulumi.Input<string>; }