Module Values.EdgeConfigSource

A description of the stream's edge configuration that will be used to sync with the Edge Agent IoT Greengrass component. The Edge Agent component will run on an IoT Hub Device setup at your premise.

Sourcetype nonrec t = {
  1. hubDeviceArn : HubDeviceArn.t;
    (*

    The "Internet of Things (IoT) Thing" Arn of the stream.

    *)
  2. recorderConfig : RecorderConfig.t;
    (*

    The recorder configuration consists of the local MediaSourceConfig details, that are used as credentials to access the local media files streamed on the camera.

    *)
  3. uploaderConfig : UploaderConfig.t option;
    (*

    The uploader configuration contains the ScheduleExpression details that are used to schedule upload jobs for the recorded media files from the Edge Agent to a Kinesis Video Stream.

    *)
  4. deletionConfig : DeletionConfig.t option;
    (*

    The deletion configuration is made up of the retention time (EdgeRetentionInHours) and local size configuration (LocalSizeConfig) details that are used to make the deletion.

    *)
}
Sourceval context_ : string
Sourceval make : ?uploaderConfig:??? -> ?deletionConfig:??? -> hubDeviceArn:HubDeviceArn.t -> recorderConfig:RecorderConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HubDeviceArn.t | `Structure of (string * [> `Boolean of DeleteAfterUpload.t | `Integer of EdgeRetentionInHours.t | `Structure of (string * [> `Enum of string | `Integer of DurationInSeconds.t | `String of MediaUriSecretArn.t ]) list ]) 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