Module Values.VariantImportJobItemSource

A variant import job.

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

    The job's ID.

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

    The job's destination variant store.

    *)
  3. roleArn : Arn.t option;
    (*

    The job's service role ARN.

    *)
  4. status : JobStatus.t option;
    (*

    The job's status.

    *)
  5. creationTime : CreationTime.t option;
    (*

    When the job was created.

    *)
  6. updateTime : UpdateTime.t option;
    (*

    When the job was updated.

    *)
  7. completionTime : CompletionTime.t option;
    (*

    When the job completed.

    *)
  8. runLeftNormalization : RunLeftNormalization.t option;
    (*

    The job's left normalization setting.

    *)
  9. annotationFields : AnnotationFieldMap.t option;
    (*

    The annotation schema generated by the parsed annotation data.

    *)
}
Sourceval make : ?id:??? -> ?destinationName:??? -> ?roleArn:??? -> ?status:??? -> ?creationTime:??? -> ?updateTime:??? -> ?completionTime:??? -> ?runLeftNormalization:??? -> ?annotationFields:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of RunLeftNormalization.t | `Enum of string | `Map of ([> `String of AnnotationFieldMapKeyString.t ] * [> `String of AnnotationFieldMapValueString.t ]) list | `String of String_.t | `Timestamp of CreationTime.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