Module Values.ChannelNameConditionSource

An optional input parameter for the ListSignalingChannels API. When this parameter is specified while invoking ListSignalingChannels, the API returns only the channels that satisfy a condition specified in ChannelNameCondition.

Sourcetype nonrec t = {
  1. comparisonOperator : ComparisonOperator.t option;
    (*

    A comparison operator. Currently, you can only specify the BEGINS_WITH operator, which finds signaling channels whose names begin with a given prefix.

    *)
  2. comparisonValue : ChannelName.t option;
    (*

    A value to compare.

    *)
}
Sourceval make : ?comparisonOperator:??? -> ?comparisonValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ChannelName.t ]) 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