Module Values.ImportJobDataSource

Summary information about the import job.

Sourcetype nonrec t = {
  1. createdTime : SyntheticTimestamp_epoch_seconds.t option;
    (*

    The timestamp when the import job was created.

    *)
  2. externalSourceConfiguration : ExternalSourceConfiguration.t option;
  3. failedRecordReport : Url.t option;
    (*

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

    *)
  4. importJobId : Uuid.t option;
    (*

    The identifier of the import job.

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

    The type of the import job.

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

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

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

    The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it.

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

    The timestamp when the import job data was last modified.

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

    The metadata fields of the imported Wisdom resources.

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

    The status of the import job.

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

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

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

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

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

    The expiration time of the URL as an epoch timestamp.

    *)
}
Sourceval make : ?createdTime:??? -> ?externalSourceConfiguration:??? -> ?failedRecordReport:??? -> ?importJobId:??? -> ?importJobType:??? -> ?knowledgeBaseArn:??? -> ?knowledgeBaseId:??? -> ?lastModifiedTime:??? -> ?metadata:??? -> ?status:??? -> ?uploadId:??? -> ?url:??? -> ?urlExpiry:??? -> 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 Url.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