Module Values_2.StartContactMediaProcessingRequestSource

Enables in-flight message processing for an ongoing chat session. Message processing will stay active for the rest of the chat, even if an individual contact segment ends.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t option;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. contactId : Values_0.ContactId.t option;
    (*

    The identifier of the contact.

    *)
  3. processorArn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the Lambda processor. You can find the Amazon Resource Name of the lambda in the lambda console.

    *)
  4. failureMode : Values_0.ContactMediaProcessingFailureMode.t option;
    (*

    The desired behavior for failed message processing.

    *)
}
Sourceval make : ?instanceId:??? -> ?contactId:??? -> ?processorArn:??? -> ?failureMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.InstanceId.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