Module Values.JobLogEventDataSource

Metadata associated with a Job log.

Sourcetype nonrec t = {
  1. sourceServerID : SourceServerID.t option;
    (*

    The ID of a Source Server.

    *)
  2. conversionServerID : EC2InstanceID.t option;
    (*

    The ID of a conversion server.

    *)
  3. targetInstanceID : EC2InstanceID.t option;
    (*

    The ID of a Recovery Instance.

    *)
  4. rawError : LargeBoundedString.t option;
    (*

    A string representing a job error.

    *)
  5. conversionProperties : ConversionProperties.t option;
    (*

    Properties of a conversion job

    *)
  6. eventResourceData : EventResourceData.t option;
    (*

    Properties of resource related to a job event.

    *)
  7. attemptCount : JobEventAttemptCount.t option;
    (*

    Retries for this operation.

    *)
  8. maxAttemptsCount : JobEventAttemptCount.t option;
    (*

    The maximum number of retries that will be attempted if this operation failed.

    *)
}
Sourceval make : ?sourceServerID:??? -> ?conversionServerID:??? -> ?targetInstanceID:??? -> ?rawError:??? -> ?conversionProperties:??? -> ?eventResourceData:??? -> ?attemptCount:??? -> ?maxAttemptsCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of JobEventAttemptCount.t | `String of SourceServerID.t | `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of LargeBoundedString.t ] * [> `List of [> `Structure of (string * [> `Enum of string | `String of ProductCodeId.t ]) list ] list | `Long of PositiveInteger.t | `Map of ([> `String of EbsSnapshot.t ] * [> `String of EbsSnapshot.t ]) list ]) list | `String of LargeBoundedString.t | `Structure of (string * [> `String of SourceNetworkID.t ]) list ]) list ]) 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