package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. outside_ip_address : Aws.BaseTypes.String.t option;
  2. tunnel_inside_cidr : Aws.BaseTypes.String.t option;
  3. tunnel_inside_ipv6_cidr : Aws.BaseTypes.String.t option;
  4. pre_shared_key : Aws.BaseTypes.String.t option;
  5. phase1_lifetime_seconds : Aws.BaseTypes.Integer.t option;
  6. phase2_lifetime_seconds : Aws.BaseTypes.Integer.t option;
  7. rekey_margin_time_seconds : Aws.BaseTypes.Integer.t option;
  8. rekey_fuzz_percentage : Aws.BaseTypes.Integer.t option;
  9. replay_window_size : Aws.BaseTypes.Integer.t option;
  10. dpd_timeout_seconds : Aws.BaseTypes.Integer.t option;
  11. dpd_timeout_action : Aws.BaseTypes.String.t option;
  12. phase1_encryption_algorithms : Phase1EncryptionAlgorithmsList.t;
  13. phase2_encryption_algorithms : Phase2EncryptionAlgorithmsList.t;
  14. phase1_integrity_algorithms : Phase1IntegrityAlgorithmsList.t;
  15. phase2_integrity_algorithms : Phase2IntegrityAlgorithmsList.t;
  16. phase1_d_h_group_numbers : Phase1DHGroupNumbersList.t;
  17. phase2_d_h_group_numbers : Phase2DHGroupNumbersList.t;
  18. ike_versions : IKEVersionsList.t;
  19. startup_action : Aws.BaseTypes.String.t option;
}
val make : ?outside_ip_address:Aws.BaseTypes.String.t -> ?tunnel_inside_cidr:Aws.BaseTypes.String.t -> ?tunnel_inside_ipv6_cidr:Aws.BaseTypes.String.t -> ?pre_shared_key:Aws.BaseTypes.String.t -> ?phase1_lifetime_seconds:Aws.BaseTypes.Integer.t -> ?phase2_lifetime_seconds:Aws.BaseTypes.Integer.t -> ?rekey_margin_time_seconds:Aws.BaseTypes.Integer.t -> ?rekey_fuzz_percentage:Aws.BaseTypes.Integer.t -> ?replay_window_size:Aws.BaseTypes.Integer.t -> ?dpd_timeout_seconds:Aws.BaseTypes.Integer.t -> ?dpd_timeout_action:Aws.BaseTypes.String.t -> ?phase1_encryption_algorithms:Phase1EncryptionAlgorithmsList.t -> ?phase2_encryption_algorithms:Phase2EncryptionAlgorithmsList.t -> ?phase1_integrity_algorithms:Phase1IntegrityAlgorithmsList.t -> ?phase2_integrity_algorithms:Phase2IntegrityAlgorithmsList.t -> ?phase1_d_h_group_numbers:Phase1DHGroupNumbersList.t -> ?phase2_d_h_group_numbers:Phase2DHGroupNumbersList.t -> ?ike_versions:IKEVersionsList.t -> ?startup_action:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t