Channels
Channels route events within an app. Use the REST resource to create and manage them; for live event subscriptions, see Realtime.
# Createchannel = client.channels.create(name="events", app_id=1)
# Getchannel = client.channels.get(channel_id=1)
# Updatechannel = client.channels.update(channel_id=1, name="renamed")
# Deleteclient.channels.delete(channel_id=1)Real-time subscriptions
Section titled “Real-time subscriptions”For real-time event subscriptions, see Realtime. The previous Socket.IO connect_websocket() and SSE subscribe_sse() flows have been removed in favor of MQTT-over-WSS via AWS IoT Core.