Module Values.ExecutorConfigurationSource

The action engine, or executor, related to the supported integration model used to create and update the action type. The available executor types are Lambda and JobWorker.

Sourcetype nonrec t = {
  1. lambdaExecutorConfiguration : LambdaExecutorConfiguration.t option;
    (*

    Details about the Lambda executor of the action type.

    *)
  2. jobWorkerExecutorConfiguration : JobWorkerExecutorConfiguration.t option;
    (*

    Details about the JobWorker executor of the action type.

    *)
}
Sourceval make : ?lambdaExecutorConfiguration:??? -> ?jobWorkerExecutorConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of AccountId.t ] list | `String of LambdaFunctionArn.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