Module Values.InputConfigurationSource

When you start your application, you provide this configuration, which identifies the input source and the point in the input source at which you want the application to start processing records.

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

    Input source ID. You can get this ID by calling the DescribeApplication operation.

    *)
  2. inputStartingPositionConfiguration : InputStartingPositionConfiguration.t;
    (*

    Point at which you want the application to start processing records from the streaming source.

    *)
}
Sourceval context_ : string
Sourceval make : id:Id.t -> inputStartingPositionConfiguration:InputStartingPositionConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `Enum of string ]) 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