Skip to content

Get Active Vpn Tunnel Status

ec2_get_active_vpn_tunnel_status R Documentation

Returns the currently negotiated security parameters for an active VPN tunnel, including IKE version, DH groups, encryption algorithms, and integrity algorithms

Description

Returns the currently negotiated security parameters for an active VPN tunnel, including IKE version, DH groups, encryption algorithms, and integrity algorithms.

Usage

ec2_get_active_vpn_tunnel_status(VpnConnectionId,
  VpnTunnelOutsideIpAddress, DryRun)

Arguments

VpnConnectionId

[required] The ID of the VPN connection for which to retrieve the active tunnel status.

VpnTunnelOutsideIpAddress

[required] The external IP address of the VPN tunnel for which to retrieve the active status.

DryRun

Checks whether you have the required permissions for the action, without actually making the request.

Value

A list with the following syntax:

list(
  ActiveVpnTunnelStatus = list(
    Phase1EncryptionAlgorithm = "string",
    Phase2EncryptionAlgorithm = "string",
    Phase1IntegrityAlgorithm = "string",
    Phase2IntegrityAlgorithm = "string",
    Phase1DHGroup = 123,
    Phase2DHGroup = 123,
    IkeVersion = "string",
    ProvisioningStatus = "available"|"pending"|"failed",
    ProvisioningStatusReason = "string"
  )
)

Request syntax

svc$get_active_vpn_tunnel_status(
  VpnConnectionId = "string",
  VpnTunnelOutsideIpAddress = "string",
  DryRun = TRUE|FALSE
)