Module Values.StartEdgeConfigurationUpdateInputSource

An asynchronous API that updates a stream’s existing edge configuration. The Kinesis Video Stream will sync the stream’s edge configuration with the Edge Agent IoT Greengrass component that runs on an IoT Hub Device, setup at your premise. The time to sync can vary and depends on the connectivity of the Hub Device. The SyncStatus will be updated as the edge configuration is acknowledged, and synced with the Edge Agent. If this API is invoked for the first time, a new edge configuration will be created for the stream, and the sync status will be set to SYNCING. You will have to wait for the sync status to reach a terminal state such as: IN_SYNC, or SYNC_FAILED, before using this API again. If you invoke this API during the syncing process, a ResourceInUseException will be thrown. The connectivity of the stream’s edge configuration and the Edge Agent will be retried for 15 minutes. After 15 minutes, the status will transition into the SYNC_FAILED state. To move an edge configuration from one device to another, use DeleteEdgeConfiguration to delete the current edge configuration. You can then invoke StartEdgeConfigurationUpdate with an updated Hub Device ARN.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the stream whose edge configuration you want to update. Specify either the StreamName or the StreamARN.

    *)
  2. streamARN : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of the stream. Specify either the StreamName or the StreamARN.

    *)
  3. edgeConfig : EdgeConfig.t;
    (*

    The edge configuration details required to invoke the update process.

    *)
}
Sourceval context_ : string
Sourceval make : ?streamName:??? -> ?streamARN:??? -> edgeConfig:EdgeConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StreamName.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 ]) 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