Module Values.VmEntitlementSource

An object that represents a Windows Server License entitlement for a virtual machine in an Amazon EVS environment.

Sourcetype nonrec t = {
  1. vmId : VmId.t option;
    (*

    The unique ID of the virtual machine.

    *)
  2. environmentId : EnvironmentId.t option;
    (*

    The unique ID of the environment.

    *)
  3. connectorId : ConnectorId.t option;
    (*

    The unique ID of the connector associated with the entitlement.

    *)
  4. vmName : VmName.t option;
    (*

    The name of the virtual machine.

    *)
  5. type_ : EntitlementType.t option;
    (*

    The type of entitlement.

    *)
  6. status : EntitlementStatus.t option;
    (*

    The status of the entitlement.

    *)
  7. lastSyncedAt : Timestamp.t option;
    (*

    The date and time that the entitlement was last synced.

    *)
  8. startedAt : Timestamp.t option;
    (*

    The date and time that the entitlement started.

    *)
  9. stoppedAt : Timestamp.t option;
    (*

    The date and time that the entitlement stopped.

    *)
  10. errorDetail : ErrorDetail.t option;
    (*

    The error details associated with the entitlement, if applicable.

    *)
}
Sourceval make : ?vmId:??? -> ?environmentId:??? -> ?connectorId:??? -> ?vmName:??? -> ?type_:??? -> ?status:??? -> ?lastSyncedAt:??? -> ?startedAt:??? -> ?stoppedAt:??? -> ?errorDetail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of VmId.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of Timestamp.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