AWS Kinesis · Schema

ChannelNameCondition

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.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
ComparisonOperator object
ComparisonValue object
View JSON Schema on GitHub

JSON Schema

kinesis-channelnamecondition-schema.json Raw ↑
{
  "$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 <code>BEGINS_WITH</code> 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 <code>ListSignalingChannels</code> API. When this parameter is specified while invoking <code>ListSignalingChannels</code>, the API returns only the channels that satisfy a condition specified in <code>ChannelNameCondition</code>."
}