EC2.Volumesee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {multi_attach_enabled : bool option;snapshot_id : string option;volume_type : string option;kms_key_id : string option;encrypted : bool option;size : int option;auto_enable_io : bool option;outpost_arn : string option;availability_zone : string;throughput : int option;iops : int option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html;
val make_properties :
?multi_attach_enabled:bool ->
?snapshot_id:string ->
?volume_type:string ->
?kms_key_id:string ->
?encrypted:bool ->
?size:int ->
?auto_enable_io:bool ->
?outpost_arn:string ->
availability_zone:string ->
?throughput:int ->
?iops:int ->
?tags:tag list ->
unit ->
propertiesval make_tag : value:string -> key:string -> unit -> tagval 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