{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ChannelNameCondition",
"title": "ChannelNameCondition",
"type": "object",
"properties": {
"ComparisonOperator": {
"allOf": [
{
"$ref": "#/components/schemas/ComparisonOperator"
},
{
"description": "A comparison operator. Currently, you can only specify the BEGINS_WITH operator, which finds signaling channels whose names begin with a given prefix."
}
]
},
"ComparisonValue": {
"allOf": [
{
"$ref": "#/components/schemas/ChannelName"
},
{
"description": "A value to compare."
}
]
}
},
"description": "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."
}