Module Values.AddApplicationInputProcessingConfigurationResponseSource

Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is Amazon Lambda.

Sourcetype nonrec t = {
  1. applicationARN : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of the application.

    *)
  2. applicationVersionId : ApplicationVersionId.t option;
    (*

    Provides the current application version.

    *)
  3. inputId : Id.t option;
    (*

    The input ID that is associated with the application input. This is the ID that Kinesis Data Analytics assigns to each input configuration that you add to your application.

    *)
  4. inputProcessingConfigurationDescription : InputProcessingConfigurationDescription.t option;
    (*

    The description of the preprocessor that executes on records in this input before the application's code is run.

    *)
}
Sourcetype nonrec error = [
  1. | `ConcurrentModificationException of ConcurrentModificationException.t
  2. | `InvalidArgumentException of InvalidArgumentException.t
  3. | `InvalidRequestException of InvalidRequestException.t
  4. | `ResourceInUseException of ResourceInUseException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?applicationARN:??? -> ?applicationVersionId:??? -> ?inputId:??? -> ?inputProcessingConfigurationDescription:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConcurrentModificationException of ConcurrentModificationException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceInUseException of ResourceInUseException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConcurrentModificationException of ConcurrentModificationException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceInUseException of ResourceInUseException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ApplicationVersionId.t | `String of ResourceARN.t | `Structure of (string * [> `Structure of (string * [> `String of ResourceARN.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