Module Values.CreateHarvestJobRequestSource

The request object for creating a new harvest job.

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

    The name of the channel group containing the channel from which to harvest content.

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

    The name of the channel from which to harvest content.

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

    The name of the origin endpoint from which to harvest content.

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

    An optional description for the harvest job.

    *)
  5. harvestedManifests : HarvestedManifests.t;
    (*

    A list of manifests to be harvested.

    *)
  6. scheduleConfiguration : HarvesterScheduleConfiguration.t;
    (*

    The configuration for when the harvest job should run, including start and end times.

    *)
  7. destination : Destination.t;
    (*

    The S3 destination where the harvested content will be placed.

    *)
  8. clientToken : IdempotencyToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

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

    A name for the harvest job. This name must be unique within the channel.

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

    A collection of tags associated with the harvest job.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?clientToken:??? -> ?harvestJobName:??? -> ?tags:??? -> channelGroupName:ResourceName.t -> channelName:ResourceName.t -> originEndpointName:ResourceName.t -> harvestedManifests:HarvestedManifests.t -> scheduleConfiguration:HarvesterScheduleConfiguration.t -> destination:Destination.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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 ]) 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