Module RDS.DBProxy

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html

type tag_format = {
  1. value : string option;
  2. key : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-tagformat.html

and auth_format = {
  1. secret_arn : string option;
  2. description : string option;
  3. iam_auth : string option;
  4. client_password_auth_type : string option;
  5. auth_scheme : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-authformat.html

type properties = {
  1. require_tls : bool option;
  2. db_proxy_name : string;
  3. idle_client_timeout : int option;
  4. vpc_security_group_ids : string list option;
  5. auth : auth_format list;
  6. debug_logging : bool option;
  7. vpc_subnet_ids : string list;
  8. role_arn : string;
  9. engine_family : string;
  10. tags : tag_format list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html;

val make_properties : ?require_tls:bool -> db_proxy_name:string -> ?idle_client_timeout:int -> ?vpc_security_group_ids:string list -> auth:auth_format list -> ?debug_logging:bool -> vpc_subnet_ids:string list -> role_arn:string -> engine_family:string -> ?tags:tag_format list -> unit -> properties
val make_tag_format : ?value:string -> ?key:string -> unit -> tag_format
val make_auth_format : ?secret_arn:string -> ?description:string -> ?iam_auth:string -> ?client_password_auth_type:string -> ?auth_scheme:string -> unit -> auth_format
val yojson_of_tag_format : tag_format -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_auth_format : auth_format -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. endpoint : string;
  3. vpc_id : string;
  4. db_proxy_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string