Skip to content

Stage

Source: src/AWS/IVSRealtime/Stage.ts

An Amazon IVS Real-Time stage — a virtual space where participants exchange audio and video in real time (sub-300ms latency).

Participants join a stage with participant tokens minted at runtime via CreateParticipantToken; publishers can also ingest via the stage’s WHIP/RTMP endpoints.

Basic Stage

import * as IVSRealtime from "alchemy/AWS/IVSRealtime";
const stage = yield* IVSRealtime.Stage("VideoRoom");

Named Stage with Tags

const stage = yield* IVSRealtime.Stage("VideoRoom", {
stageName: "my-video-room",
tags: { team: "media" },
});