NetworkManager.Link
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html
type properties = {
site_id : string;
type_ : string option;
global_network_id : string;
description : string option;
bandwidth : bandwidth;
provider : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html;
val make_properties :
site_id:string ->
?type_:string ->
global_network_id:string ->
?description:string ->
bandwidth:bandwidth ->
?tags:tag list ->
?provider:string ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val make_bandwidth :
?download_speed:int ->
?upload_speed:int ->
unit ->
bandwidth
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_bandwidth :
bandwidth ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes