Module Values_0.TunnelOptionSource

The VPN tunnel options.

Sourcetype nonrec t = {
  1. outsideIpAddress : String_.t option;
    (*

    The external IP address of the VPN tunnel.

    *)
  2. tunnelInsideCidr : String_.t option;
    (*

    The range of inside IPv4 addresses for the tunnel.

    *)
  3. tunnelInsideIpv6Cidr : String_.t option;
    (*

    The range of inside IPv6 addresses for the tunnel.

    *)
  4. preSharedKey : PreSharedKey.t option;
    (*

    The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and the customer gateway.

    *)
  5. phase1LifetimeSeconds : Integer.t option;
    (*

    The lifetime for phase 1 of the IKE negotiation, in seconds.

    *)
  6. phase2LifetimeSeconds : Integer.t option;
    (*

    The lifetime for phase 2 of the IKE negotiation, in seconds.

    *)
  7. rekeyMarginTimeSeconds : Integer.t option;
    (*

    The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey.

    *)
  8. rekeyFuzzPercentage : Integer.t option;
    (*

    The percentage of the rekey window determined by RekeyMarginTimeSeconds during which the rekey time is randomly selected.

    *)
  9. replayWindowSize : Integer.t option;
    (*

    The number of packets in an IKE replay window.

    *)
  10. dpdTimeoutSeconds : Integer.t option;
    (*

    The number of seconds after which a DPD timeout occurs.

    *)
  11. dpdTimeoutAction : String_.t option;
    (*

    The action to take after a DPD timeout occurs.

    *)
  12. phase1EncryptionAlgorithms : Phase1EncryptionAlgorithmsList.t option;
    (*

    The permitted encryption algorithms for the VPN tunnel for phase 1 IKE negotiations.

    *)
  13. phase2EncryptionAlgorithms : Phase2EncryptionAlgorithmsList.t option;
    (*

    The permitted encryption algorithms for the VPN tunnel for phase 2 IKE negotiations.

    *)
  14. phase1IntegrityAlgorithms : Phase1IntegrityAlgorithmsList.t option;
    (*

    The permitted integrity algorithms for the VPN tunnel for phase 1 IKE negotiations.

    *)
  15. phase2IntegrityAlgorithms : Phase2IntegrityAlgorithmsList.t option;
    (*

    The permitted integrity algorithms for the VPN tunnel for phase 2 IKE negotiations.

    *)
  16. phase1DHGroupNumbers : Phase1DHGroupNumbersList.t option;
    (*

    The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 1 IKE negotiations.

    *)
  17. phase2DHGroupNumbers : Phase2DHGroupNumbersList.t option;
    (*

    The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 2 IKE negotiations.

    *)
  18. ikeVersions : IKEVersionsList.t option;
    (*

    The IKE versions that are permitted for the VPN tunnel.

    *)
  19. startupAction : String_.t option;
    (*

    The action to take when the establishing the VPN tunnels for a VPN connection.

    *)
  20. logOptions : VpnTunnelLogOptions.t option;
    (*

    Options for logging VPN tunnel activity.

    *)
  21. enableTunnelLifecycleControl : Boolean.t option;
    (*

    Status of tunnel endpoint lifecycle control feature.

    *)
}
Sourceval make : ?outsideIpAddress:??? -> ?tunnelInsideCidr:??? -> ?tunnelInsideIpv6Cidr:??? -> ?preSharedKey:??? -> ?phase1LifetimeSeconds:??? -> ?phase2LifetimeSeconds:??? -> ?rekeyMarginTimeSeconds:??? -> ?rekeyFuzzPercentage:??? -> ?replayWindowSize:??? -> ?dpdTimeoutSeconds:??? -> ?dpdTimeoutAction:??? -> ?phase1EncryptionAlgorithms:??? -> ?phase2EncryptionAlgorithms:??? -> ?phase1IntegrityAlgorithms:??? -> ?phase2IntegrityAlgorithms:??? -> ?phase1DHGroupNumbers:??? -> ?phase2DHGroupNumbers:??? -> ?ikeVersions:??? -> ?startupAction:??? -> ?logOptions:??? -> ?enableTunnelLifecycleControl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t