Module Values.InputDescriptionSource

Describes the application input configuration. For more information, see Configuring Application Input.

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

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

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

    In-application name prefix.

    *)
  3. inAppStreamNames : InAppStreamNames.t option;
    (*

    Returns the in-application stream names that are mapped to the stream source.

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

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

    *)
  5. kinesisStreamsInputDescription : KinesisStreamsInputDescription.t option;
    (*

    If an Amazon Kinesis stream is configured as streaming source, provides Amazon Kinesis stream's Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.

    *)
  6. kinesisFirehoseInputDescription : KinesisFirehoseInputDescription.t option;
    (*

    If an Amazon Kinesis Firehose delivery stream is configured as a streaming source, provides the delivery stream's ARN and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.

    *)
  7. inputSchema : SourceSchema.t option;
    (*

    Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.

    *)
  8. inputParallelism : InputParallelism.t option;
    (*

    Describes the configured parallelism (number of in-application streams mapped to the streaming source).

    *)
  9. inputStartingPositionConfiguration : InputStartingPositionConfiguration.t option;
    (*

    Point at which the application is configured to read from the input stream.

    *)
}
Sourceval make : ?inputId:??? -> ?namePrefix:??? -> ?inAppStreamNames:??? -> ?inputProcessingConfigurationDescription:??? -> ?kinesisStreamsInputDescription:??? -> ?kinesisFirehoseInputDescription:??? -> ?inputSchema:??? -> ?inputParallelism:??? -> ?inputStartingPositionConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of InAppStreamName.t ] list | `String of Id.t | `Structure of (string * [> `Enum 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