Module Values.BillOfMaterialsImportJobSource

The BillOfMaterialsImportJob details.

Sourcetype nonrec t = {
  1. instanceId : UUID.t option;
    (*

    The BillOfMaterialsImportJob instanceId.

    *)
  2. jobId : UUID.t option;
    (*

    The BillOfMaterialsImportJob jobId.

    *)
  3. status : ConfigurationJobStatus.t option;
    (*

    The BillOfMaterialsImportJob ConfigurationJobStatus.

    *)
  4. s3uri : ConfigurationS3Uri.t option;
    (*

    The S3 URI from which the CSV is read.

    *)
  5. message : String_.t option;
    (*

    When the BillOfMaterialsImportJob has reached a terminal state, there will be a message.

    *)
}
Sourceval make : ?instanceId:??? -> ?jobId:??? -> ?status:??? -> ?s3uri:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.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