Module Values.AddApplicationInputProcessingConfigurationRequestSource

This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see Amazon Kinesis Data Analytics API V2 Documentation. Adds an InputProcessingConfiguration to an application. An input processor preprocesses records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda.

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t;
    (*

    Name of the application to which you want to add the input processing configuration.

    *)
  2. currentApplicationVersionId : ApplicationVersionId.t;
    (*

    Version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.

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

    The ID of the input configuration to add the input processing configuration to. You can get a list of the input IDs for an application using the DescribeApplication operation.

    *)
  4. inputProcessingConfiguration : InputProcessingConfiguration.t;
    (*

    The InputProcessingConfiguration to add to the application.

    *)
}
Sourceval context_ : string
Sourceval make : applicationName:ApplicationName.t -> currentApplicationVersionId:ApplicationVersionId.t -> inputId:Id.t -> inputProcessingConfiguration:InputProcessingConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ApplicationVersionId.t | `String of ApplicationName.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