package aws-rds

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. d_b_proxy_name : Aws.BaseTypes.String.t;
  2. engine_family : EngineFamily.t;
  3. auth : UserAuthConfigList.t;
  4. role_arn : Aws.BaseTypes.String.t;
  5. vpc_subnet_ids : StringList.t;
  6. vpc_security_group_ids : StringList.t;
  7. require_t_l_s : Aws.BaseTypes.Boolean.t option;
  8. idle_client_timeout : Aws.BaseTypes.Integer.t option;
  9. debug_logging : Aws.BaseTypes.Boolean.t option;
  10. tags : TagList.t;
}
val make : d_b_proxy_name:Aws.BaseTypes.String.t -> engine_family:EngineFamily.t -> auth:UserAuthConfigList.t -> role_arn:Aws.BaseTypes.String.t -> vpc_subnet_ids:StringList.t -> ?vpc_security_group_ids:StringList.t -> ?require_t_l_s:Aws.BaseTypes.Boolean.t -> ?idle_client_timeout:Aws.BaseTypes.Integer.t -> ?debug_logging:Aws.BaseTypes.Boolean.t -> ?tags:TagList.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