Module Values.UpdateStreamProcessorRequestSource

Allows you to update a stream processor. You can change some settings and regions of interest and delete certain parameters.

Sourcetype nonrec t = {
  1. name : StreamProcessorName.t;
    (*

    Name of the stream processor that you want to update.

    *)
  2. settingsForUpdate : StreamProcessorSettingsForUpdate.t option;
    (*

    The stream processor settings that you want to update. Label detection settings can be updated to detect different labels with a different minimum confidence.

    *)
  3. regionsOfInterestForUpdate : RegionsOfInterest.t option;
    (*

    Specifies locations in the frames where Amazon Rekognition checks for objects or people. This is an optional parameter for label detection stream processors.

    *)
  4. dataSharingPreferenceForUpdate : StreamProcessorDataSharingPreference.t option;
    (*

    Shows whether you are sharing data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams.

    *)
  5. parametersToDelete : StreamProcessorParametersToDelete.t option;
    (*

    A list of parameters you want to delete from the stream processor.

    *)
}
Sourceval context_ : string
Sourceval make : ?settingsForUpdate:??? -> ?regionsOfInterestForUpdate:??? -> ?dataSharingPreferenceForUpdate:??? -> ?parametersToDelete:??? -> name:StreamProcessorName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `Structure of (string * [> `List of [> `Structure of (string * [> `Float of Float_.t ]) list ] list | `Structure of (string * [> `Float of Float_.t ]) list ]) list ] list | `String of StreamProcessorName.t | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Float of Percent.t | `List of [> `String of ConnectedHomeLabel.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