Module Values.ImportFileEnrichmentSource

Details about an import file enrichment job.

Sourcetype nonrec t = {
  1. jobID : ImportFileEnrichmentJobID.t option;
    (*

    The unique identifier of the import file enrichment job.

    *)
  2. createdAt : Timestamp.t option;
    (*

    The timestamp when the enrichment job was created.

    *)
  3. endedAt : Timestamp.t option;
    (*

    The timestamp when the enrichment job completed or failed.

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

    The current status of the import file enrichment job.

    *)
  5. statusDetails : LargeBoundedString.t option;
    (*

    Detailed status information about the enrichment job.

    *)
  6. checksum : Checksum.t option;
    (*

    The checksum of the enriched file for integrity verification.

    *)
  7. s3BucketTarget : EnrichmentTargetS3Configuration.t option;
    (*

    The target S3 configuration for the enriched import file.

    *)
}
Sourceval make : ?jobID:??? -> ?createdAt:??? -> ?endedAt:??? -> ?status:??? -> ?statusDetails:??? -> ?checksum:??? -> ?s3BucketTarget:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ImportFileEnrichmentJobID.t | `Structure of (string * [> `Enum of string | `String of Hash.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