Module Values.AttachedDiskSource

Describes a block storage disk that is attached to an instance, and is included in an automatic snapshot.

Sourcetype nonrec t = {
  1. path : String_.t option;
    (*

    The path of the disk (/dev/xvdf).

    *)
  2. sizeInGb : Integer.t option;
    (*

    The size of the disk in GB.

    *)
}
Sourceval make : ?path:??? -> ?sizeInGb:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t