Module Values.GetHarvestJobResponseSource

The response object containing the details of the requested harvest job.

Sourcetype nonrec t = {
  1. channelGroupName : ResourceName.t option;
    (*

    The name of the channel group containing the channel associated with the harvest job.

    *)
  2. channelName : ResourceName.t option;
    (*

    The name of the channel associated with the harvest job.

    *)
  3. originEndpointName : ResourceName.t option;
    (*

    The name of the origin endpoint associated with the harvest job.

    *)
  4. destination : Destination.t option;
    (*

    The S3 destination where the harvested content is being placed.

    *)
  5. harvestJobName : ResourceName.t option;
    (*

    The name of the harvest job.

    *)
  6. harvestedManifests : HarvestedManifests.t option;
    (*

    A list of manifests that are being or have been harvested.

    *)
  7. description : ResourceDescription.t option;
    (*

    The description of the harvest job, if provided.

    *)
  8. scheduleConfiguration : HarvesterScheduleConfiguration.t option;
    (*

    The configuration for when the harvest job is scheduled to run, including start and end times.

    *)
  9. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the harvest job.

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

    The date and time when the harvest job was created.

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

    The date and time when the harvest job was last modified.

    *)
  12. status : HarvestJobStatus.t option;
    (*

    The current status of the harvest job (e.g., QUEUED, IN_PROGRESS, CANCELLED, COMPLETED, FAILED).

    *)
  13. errorMessage : String_.t option;
    (*

    An error message if the harvest job encountered any issues.

    *)
  14. eTag : EntityTag.t option;
    (*

    The current version of the harvest job. Used for concurrency control.

    *)
  15. tags : TagMap.t option;
    (*

    A collection of tags associated with the harvest job.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?channelGroupName:??? -> ?channelName:??? -> ?originEndpointName:??? -> ?destination:??? -> ?harvestJobName:??? -> ?harvestedManifests:??? -> ?description:??? -> ?scheduleConfiguration:??? -> ?arn:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?status:??? -> ?errorMessage:??? -> ?eTag:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ResourceName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ResourceName.t ]) list ] list | `Structure of (string * [> `String of S3BucketName.t ]) list | `Timestamp of Timestamp.t ]) 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