Module Values.GetMediaAnalysisJobResponseSource

Retrieves the results for a given media analysis job. Takes a JobId returned by StartMediaAnalysisJob.

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

    The identifier for the media analysis job.

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

    The name of the media analysis job.

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

    Operation configurations that were provided during job creation.

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

    The current status of the media analysis job.

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

    The summary manifest provides statistics on input manifest and errors identified in the input manifest.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerError of InternalServerError.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `ProvisionedThroughputExceededException of ProvisionedThroughputExceededException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobId:??? -> ?jobName:??? -> ?operationsConfig:??? -> ?status:??? -> ?failureDetails:??? -> ?creationTimestamp:??? -> ?completionTimestamp:??? -> ?input:??? -> ?outputConfig:??? -> ?kmsKeyId:??? -> ?results:??? -> ?manifestSummary:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `InternalServerError of unit | `InvalidParameterException of unit | `ProvisionedThroughputExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of unit | `InternalServerError of unit | `InvalidParameterException of unit | `ProvisionedThroughputExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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