Module Values.RecoveryInstanceDiskSource

An object representing a block storage device on the Recovery Instance.

Sourcetype nonrec t = {
  1. internalDeviceName : BoundedString.t option;
    (*

    The internal device name of this disk. This is the name that is visible on the machine itself and not from the EC2 console.

    *)
  2. bytes : PositiveInteger.t option;
    (*

    The amount of storage on the disk in bytes.

    *)
  3. ebsVolumeID : EbsVolumeID.t option;
    (*

    The EBS Volume ID of this disk.

    *)
}
Sourceval make : ?internalDeviceName:??? -> ?bytes:??? -> ?ebsVolumeID:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PositiveInteger.t | `String of BoundedString.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