Module Values.ImportJobSummarySource

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;
    (*

    The configuration information of the external source that the resource data are imported from.

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

    The identifier of the import job.

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

    The type of import job.

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

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

    *)
  6. 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.

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

    The timestamp when the import job was last modified.

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

    The metadata fields of the imported Wisdom resources.

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

    The status of the import job.

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

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

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