Values.StreamNameConditionSourceSpecifies the condition that streams must satisfy to be returned when you list streams (see the ListStreams API). A condition has a comparison operation and a value. Currently, you can specify only the BEGINS_WITH operator, which finds streams whose names start with a given prefix.
type nonrec t = {comparisonOperator : ComparisonOperator.t option;A comparison operator. Currently, you can specify only the BEGINS_WITH operator, which finds streams whose names start with a given prefix.
*)comparisonValue : StreamName.t option;A value to compare.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of StreamName.t ]) list ]