Lightsail.LoadBalancer
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-loadbalancer.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
ip_address_type : string option;
load_balancer_name : string;
attached_instances : string list option;
instance_port : int;
health_check_path : string option;
session_stickiness_enabled : bool option;
tls_policy_name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-loadbalancer.html;
val make_properties :
?ip_address_type:string ->
?session_stickiness_lb_cookie_duration_seconds:string ->
load_balancer_name:string ->
?attached_instances:string list ->
instance_port:int ->
?health_check_path:string ->
?session_stickiness_enabled:bool ->
?tls_policy_name:string ->
?tags:tag list ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes