Module Values.InputUpdateSource

Describes updates to a specific input configuration (identified by the InputId of an application).

Sourcetype nonrec t = {
  1. inputId : Id.t;
    (*

    Input ID of the application input to be updated.

    *)
  2. namePrefixUpdate : InAppStreamName.t option;
    (*

    Name prefix for in-application streams that Amazon Kinesis Analytics creates for the specific streaming source.

    *)
  3. inputProcessingConfigurationUpdate : InputProcessingConfigurationUpdate.t option;
    (*

    Describes updates for an input processing configuration.

    *)
  4. kinesisStreamsInputUpdate : KinesisStreamsInputUpdate.t option;
    (*

    If an Amazon Kinesis stream is the streaming source to be updated, provides an updated stream Amazon Resource Name (ARN) and IAM role ARN.

    *)
  5. kinesisFirehoseInputUpdate : KinesisFirehoseInputUpdate.t option;
    (*

    If an Amazon Kinesis Firehose delivery stream is the streaming source to be updated, provides an updated stream ARN and IAM role ARN.

    *)
  6. inputSchemaUpdate : InputSchemaUpdate.t option;
    (*

    Describes the data format on the streaming source, and how record elements on the streaming source map to columns of the in-application stream that is created.

    *)
  7. inputParallelismUpdate : InputParallelismUpdate.t option;
    (*

    Describes the parallelism updates (the number in-application streams Amazon Kinesis Analytics creates for the specific streaming source).

    *)
}
Sourceval context_ : string
Sourceval make : ?namePrefixUpdate:??? -> ?inputProcessingConfigurationUpdate:??? -> ?kinesisStreamsInputUpdate:??? -> ?kinesisFirehoseInputUpdate:??? -> ?inputSchemaUpdate:??? -> ?inputParallelismUpdate:??? -> inputId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `Integer of InputParallelismCount.t | `List of [> `Structure of (string * [> `String of RecordColumnName.t ]) list ] list | `String of ResourceARN.t | `Structure of (string * [> `Enum of string | `String of ResourceARN.t | `Structure of (string * [> `Structure of (string * [> `String of RecordRowPath.t ]) list ]) 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