Module Values.MediaAnalysisJobDescriptionSource

Description for a media analysis job.

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

    The identifier for a media analysis job.

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

    The name of a media analysis job.

    *)
  3. operationsConfig : MediaAnalysisOperationsConfig.t option;
    (*

    Operation configurations that were provided during job creation.

    *)
  4. status : MediaAnalysisJobStatus.t option;
    (*

    The status of the media analysis job being retrieved.

    *)
  5. failureDetails : MediaAnalysisJobFailureDetails.t option;
    (*

    Details about the error that resulted in failure of the job.

    *)
  6. creationTimestamp : DateTime.t option;
    (*

    The Unix date and time when the job was started.

    *)
  7. completionTimestamp : DateTime.t option;
    (*

    The Unix date and time when the job finished.

    *)
  8. input : MediaAnalysisInput.t option;
    (*

    Reference to the input manifest that was provided in the job creation request.

    *)
  9. outputConfig : MediaAnalysisOutputConfig.t option;
    (*

    Output configuration that was provided in the creation request.

    *)
  10. kmsKeyId : KmsKeyId.t option;
    (*

    KMS Key that was provided in the creation request.

    *)
  11. results : MediaAnalysisResults.t option;
    (*

    Output manifest that contains prediction results.

    *)
  12. manifestSummary : MediaAnalysisManifestSummary.t option;
    (*

    Provides statistics on input manifest and errors identified in the input manifest.

    *)
}
Sourceval make : ?jobId:??? -> ?jobName:??? -> ?operationsConfig:??? -> ?status:??? -> ?failureDetails:??? -> ?creationTimestamp:??? -> ?completionTimestamp:??? -> ?input:??? -> ?outputConfig:??? -> ?kmsKeyId:??? -> ?results:??? -> ?manifestSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MediaAnalysisJobId.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Float of Percent.t | `String of ProjectVersionId.t ]) list ]) list | `Timestamp of DateTime.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