Module NetworkManager.Link

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html

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

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and bandwidth = {
  1. download_speed : int option;
  2. upload_speed : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-link-bandwidth.html

type properties = {
  1. site_id : string;
  2. type_ : string option;
  3. global_network_id : string;
  4. description : string option;
  5. bandwidth : bandwidth;
  6. tags : tag list option;
  7. 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 ]
type attributes = {
  1. ref_ : string;
  2. state : string;
  3. created_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string