Module Values.TextTranslationJobPropertiesSource

Provides information about a translation job.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The ID of the translation job.

    *)
  2. jobName : JobName.t option;
    (*

    The user-defined name of the translation job.

    *)
  3. jobStatus : JobStatus.t option;
    (*

    The status of the translation job.

    *)
  4. jobDetails : JobDetails.t option;
    (*

    The number of documents successfully and unsuccessfully processed during the translation job.

    *)
  5. sourceLanguageCode : LanguageCodeString.t option;
    (*

    The language code of the language of the source text. The language must be a language supported by Amazon Translate.

    *)
  6. targetLanguageCodes : TargetLanguageCodeStringList.t option;
    (*

    The language code of the language of the target text. The language must be a language supported by Amazon Translate.

    *)
  7. terminologyNames : ResourceNameList.t option;
    (*

    A list containing the names of the terminologies applied to a translation job. Only one terminology can be applied per StartTextTranslationJob request at this time.

    *)
  8. parallelDataNames : ResourceNameList.t option;
    (*

    A list containing the names of the parallel data resources applied to the translation job.

    *)
  9. message : UnboundedLengthString.t option;
    (*

    An explanation of any errors that may have occurred during the translation job.

    *)
  10. submittedTime : Timestamp.t option;
    (*

    The time at which the translation job was submitted.

    *)
  11. endTime : Timestamp.t option;
    (*

    The time at which the translation job ended.

    *)
  12. inputDataConfig : InputDataConfig.t option;
    (*

    The input configuration properties that were specified when the job was requested.

    *)
  13. outputDataConfig : OutputDataConfig.t option;
    (*

    The output configuration properties that were specified when the job was requested.

    *)
  14. dataAccessRoleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an AWS Identity Access and Management (IAM) role that granted Amazon Translate read access to the job's input data.

    *)
  15. settings : TranslationSettings.t option;
    (*

    Settings that modify the translation output.

    *)
}
Sourceval make : ?jobId:??? -> ?jobName:??? -> ?jobStatus:??? -> ?jobDetails:??? -> ?sourceLanguageCode:??? -> ?targetLanguageCodes:??? -> ?terminologyNames:??? -> ?parallelDataNames:??? -> ?message:??? -> ?submittedTime:??? -> ?endTime:??? -> ?inputDataConfig:??? -> ?outputDataConfig:??? -> ?dataAccessRoleArn:??? -> ?settings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of LanguageCodeString.t ] list | `String of JobId.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of S3Uri.t | `Structure of (string * [> `Enum of string | `String of EncryptionKeyID.t ]) list ]) 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