Module Values.ImportJobDataSource

Summary information about the import job.

Sourcetype nonrec t = {
  1. importJobId : Uuid.t option;
    (*

    The identifier of the import job.

    *)
  2. knowledgeBaseId : Uuid.t option;
    (*

    The identifier of the knowledge base.

    *)
  3. uploadId : UploadId.t option;
    (*

    A pointer to the uploaded asset. This value is returned by StartContentUpload.

    *)
  4. knowledgeBaseArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the knowledge base.

    *)
  5. importJobType : ImportJobType.t option;
    (*

    The type of the import job.

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

    The status of the import job.

    *)
  7. url : Url.t option;
    (*

    The download link to the resource file that is uploaded to the import job.

    *)
  8. failedRecordReport : Url.t option;
    (*

    The link to download the information of resource data that failed to be imported.

    *)
  9. urlExpiry : SyntheticTimestamp_epoch_seconds.t option;
    (*

    The expiration time of the URL as an epoch timestamp.

    *)
  10. createdTime : SyntheticTimestamp_epoch_seconds.t option;
    (*

    The timestamp when the import job was created.

    *)
  11. lastModifiedTime : SyntheticTimestamp_epoch_seconds.t option;
    (*

    The timestamp when the import job data was last modified.

    *)
  12. metadata : ContentMetadata.t option;
    (*

    The metadata fields of the imported Amazon Q in Connect resources.

    *)
  13. externalSourceConfiguration : ExternalSourceConfiguration.t option;
}
Sourceval make : ?importJobId:??? -> ?knowledgeBaseId:??? -> ?uploadId:??? -> ?knowledgeBaseArn:??? -> ?importJobType:??? -> ?status:??? -> ?url:??? -> ?failedRecordReport:??? -> ?urlExpiry:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?metadata:??? -> ?externalSourceConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of Uuid.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ]) list | `Timestamp of SyntheticTimestamp_epoch_seconds.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