Show / Hide Table of Contents

Class VpnConnectionArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VpnConnectionArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public sealed class VpnConnectionArgs : ResourceArgs

Constructors

View Source

VpnConnectionArgs()

Declaration
public VpnConnectionArgs()

Properties

View Source

CustomerGatewayId

The ID of the customer gateway.

Declaration
public Input<string> CustomerGatewayId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StaticRoutesOnly

Whether the VPN connection uses static routes exclusively. Static routes must be used for devices that don't support BGP.

Declaration
public Input<bool> StaticRoutesOnly { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Tags

Tags to apply to the connection.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

TransitGatewayId

The ID of the EC2 Transit Gateway.

Declaration
public Input<string> TransitGatewayId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tunnel1InsideCidr

The CIDR block of the inside IP addresses for the first VPN tunnel.

Declaration
public Input<string> Tunnel1InsideCidr { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tunnel1PresharedKey

The preshared key of the first VPN tunnel.

Declaration
public Input<string> Tunnel1PresharedKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tunnel2InsideCidr

The CIDR block of the inside IP addresses for the second VPN tunnel.

Declaration
public Input<string> Tunnel2InsideCidr { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tunnel2PresharedKey

The preshared key of the second VPN tunnel.

Declaration
public Input<string> Tunnel2PresharedKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Type

The type of VPN connection. The only type AWS supports at this time is "ipsec.1".

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
View Source

VpnGatewayId

The ID of the Virtual Private Gateway.

Declaration
public Input<string> VpnGatewayId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.