Lightsail.Disksee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-disk.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-lightsail-disk-autosnapshotaddon.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-disk-location.html
and add_on = {status : string option;add_on_type : string;auto_snapshot_add_on_request : auto_snapshot_add_on option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-disk-addon.html
type properties = {size_in_gb : int;availability_zone : string option;add_ons : add_on list option;disk_name : string;location : location option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-disk.html;
val make_properties :
size_in_gb:int ->
?availability_zone:string ->
?add_ons:add_on list ->
disk_name:string ->
?tags:tag list ->
?location:location ->
unit ->
propertiesval make_tag : value:string -> key:string -> unit -> tagval make_auto_snapshot_add_on :
?snapshot_time_of_day:string ->
unit ->
auto_snapshot_add_onval make_location :
?region_name:string ->
?availability_zone:string ->
unit ->
locationval make_add_on :
?status:string ->
add_on_type:string ->
?auto_snapshot_add_on_request:auto_snapshot_add_on ->
unit ->
add_onval yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_auto_snapshot_add_on : auto_snapshot_add_on -> Yojson.Safe.tval yojson_of_location :
location ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_add_on : add_on -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes