package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. tunnel_inside_cidr : Aws.BaseTypes.String.t option;
  2. tunnel_inside_ipv6_cidr : Aws.BaseTypes.String.t option;
  3. pre_shared_key : Aws.BaseTypes.String.t option;
  4. phase1_lifetime_seconds : Aws.BaseTypes.Integer.t option;
  5. phase2_lifetime_seconds : Aws.BaseTypes.Integer.t option;
  6. rekey_margin_time_seconds : Aws.BaseTypes.Integer.t option;
  7. rekey_fuzz_percentage : Aws.BaseTypes.Integer.t option;
  8. replay_window_size : Aws.BaseTypes.Integer.t option;
  9. d_p_d_timeout_seconds : Aws.BaseTypes.Integer.t option;
  10. d_p_d_timeout_action : Aws.BaseTypes.String.t option;
  11. phase1_encryption_algorithms : Phase1EncryptionAlgorithmsRequestList.t;
  12. phase2_encryption_algorithms : Phase2EncryptionAlgorithmsRequestList.t;
  13. phase1_integrity_algorithms : Phase1IntegrityAlgorithmsRequestList.t;
  14. phase2_integrity_algorithms : Phase2IntegrityAlgorithmsRequestList.t;
  15. phase1_d_h_group_numbers : Phase1DHGroupNumbersRequestList.t;
  16. phase2_d_h_group_numbers : Phase2DHGroupNumbersRequestList.t;
  17. i_k_e_versions : IKEVersionsRequestList.t;
  18. startup_action : Aws.BaseTypes.String.t option;
}
val make : ?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 -> ?d_p_d_timeout_seconds:Aws.BaseTypes.Integer.t -> ?d_p_d_timeout_action:Aws.BaseTypes.String.t -> ?phase1_encryption_algorithms:Phase1EncryptionAlgorithmsRequestList.t -> ?phase2_encryption_algorithms:Phase2EncryptionAlgorithmsRequestList.t -> ?phase1_integrity_algorithms:Phase1IntegrityAlgorithmsRequestList.t -> ?phase2_integrity_algorithms:Phase2IntegrityAlgorithmsRequestList.t -> ?phase1_d_h_group_numbers:Phase1DHGroupNumbersRequestList.t -> ?phase2_d_h_group_numbers:Phase2DHGroupNumbersRequestList.t -> ?i_k_e_versions:IKEVersionsRequestList.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