Module EC2.Volume

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html

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

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

type properties = {
  1. multi_attach_enabled : bool option;
  2. snapshot_id : string option;
  3. volume_type : string option;
  4. kms_key_id : string option;
  5. encrypted : bool option;
  6. size : int option;
  7. auto_enable_io : bool option;
  8. outpost_arn : string option;
  9. availability_zone : string;
  10. throughput : int option;
  11. iops : int option;
  12. tags : tag list 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 -> 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 ]
type attributes = {
  1. ref_ : string;
  2. volume_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string