Module Values.CreateHarvestJobResponseSource

The response object returned after creating a harvest job.

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

    The name of the channel group containing the channel from which content is being harvested.

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

    The name of the channel from which content is being harvested.

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

    The name of the origin endpoint from which content is being harvested.

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

    The S3 destination where the harvested content will be placed.

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

    The name of the created harvest job.

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

    A list of manifests that will be 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 will run, including start and end times.

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

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

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

    The date and time the harvest job was created.

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

    The date and time the harvest job was last modified.

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

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

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

    An error message if the harvest job creation failed.

    *)
  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. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `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 | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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