Module Values.VirtualMachineSource

A virtual machine that is on a hypervisor.

Sourcetype nonrec t = {
  1. hostName : Name.t option;
    (*

    The host name of the virtual machine.

    *)
  2. hypervisorId : String_.t option;
    (*

    The ID of the virtual machine's hypervisor.

    *)
  3. name : Name.t option;
    (*

    The name of the virtual machine.

    *)
  4. path : Path.t option;
    (*

    The path of the virtual machine.

    *)
  5. resourceArn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the virtual machine. For example, arn:aws:backup-gateway:us-west-1:0000000000000:vm/vm-0000ABCDEFGIJKL.

    *)
  6. lastBackupDate : Time.t option;
    (*

    The most recent date a virtual machine was backed up, in Unix format and UTC time.

    *)
}
Sourceval make : ?hostName:??? -> ?hypervisorId:??? -> ?name:??? -> ?path:??? -> ?resourceArn:??? -> ?lastBackupDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.t | `Timestamp of Time.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