RDS.DBProxy
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-tagformat.html
and auth_format = {
secret_arn : string option;
description : string option;
iam_auth : string option;
client_password_auth_type : string option;
auth_scheme : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbproxy-authformat.html
type properties = {
require_tls : bool option;
db_proxy_name : string;
idle_client_timeout : int option;
vpc_security_group_ids : string list option;
auth : auth_format list;
debug_logging : bool option;
vpc_subnet_ids : string list;
role_arn : string;
engine_family : string;
}
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 ]
val create_attributes : string -> attributes