Namespace Amazon.CDK.AWS.Ivs.Alpha
AWS::IVS Construct Library
---The APIs of higher level constructs in this module are experimental and under active development.
They are subject to non-backward compatible changes or removal in any future version. These are
not subject to the <a href="https://semver.org/">Semantic Versioning</a> model and breaking changes will be
announced in the release notes. This means that while you may use them, you may need to update
your source code when upgrading to a newer version of this package.
Amazon Interactive Video Service (Amazon IVS) is a managed live streaming solution that is quick and easy to set up, and ideal for creating interactive video experiences. Send your live streams to Amazon IVS using streaming software and the service does everything you need to make low-latency live video available to any viewer around the world, letting you focus on building interactive experiences alongside the live video. You can easily customize and enhance the audience experience through the Amazon IVS player SDK and timed metadata APIs, allowing you to build a more valuable relationship with your viewers on your own websites and applications.
This module is part of the AWS Cloud Development Kit project.
Channels
An Amazon IVS channel stores configuration information related to your live stream. You first create a channel and then contribute video to it using the channel’s stream key to start your live stream.
You can create a channel
var myChannel = new Channel(this, "Channel");
You can use Advanced Channel type by setting the type
property to
ivs.ChannelType.ADVANCED_HD
or ivs.ChannelType.ADVANCED_SD
.
Additionally, when using the Advanced Channel type, you can set
the preset
property to ivs.Preset.CONSTRAINED_BANDWIDTH_DELIVERY
or ivs.Preset.HIGHER_BANDWIDTH_DELIVERY
.
For more information, see Amazon IVS Streaming Configuration.
var myChannel = new Channel(this, "myChannel", new ChannelProps {
Type = ChannelType.ADVANCED_HD,
Preset = Preset.CONSTRAINED_BANDWIDTH_DELIVERY
});
If you want to use RTMP ingest, set insecureIngest
property to true
.
By default, insecureIngest
is false
which means using RTMPS ingest.
⚠ Note: RTMP ingest might result in reduced security for your streams. AWS recommends that you use RTMPS for ingest, unless you have specific and verified use cases. For more information, see Encoder Settings.
var myRtmpChannel = new Channel(this, "myRtmpChannel", new ChannelProps {
Type = ChannelType.STANDARD,
InsecureIngest = true
});
Multitrack Video
Multitrack video is a new, low-latency streaming paradigm supported by Amazon Interactive Video Service (IVS) and services that use Amazon IVS.
You can use Multitrack Video by setting the multitrackInputConfiguration
property.
Multitrack Video requires both a STANDARD Channel and Fragmented Mp4.
For more information, see Amazon IVS Multitrack Video.
new Channel(this, "ChannelWithMultitrackVideo", new ChannelProps {
Type = ChannelType.STANDARD,
ContainerFormat = ContainerFormat.FRAGMENTED_MP4,
MultitrackInputConfiguration = new MultitrackInputConfiguration {
MaximumResolution = MaximumResolution.HD,
Policy = Policy.ALLOW
}
});
Importing an existing channel
You can reference an existing channel, for example, if you need to create a stream key for an existing channel
var myChannel = Channel.FromChannelArn(this, "Channel", myChannelArn);
Stream Keys
A Stream Key is used by a broadcast encoder to initiate a stream and identify to Amazon IVS which customer and channel the stream is for. If you are storing this value, it should be treated as if it were a password.
You can create a stream key for a given channel
var myStreamKey = myChannel.AddStreamKey("StreamKey");
Private Channels
Amazon IVS offers the ability to create private channels, allowing you to restrict your streams by channel or viewer. You control access to video playback by enabling playback authorization on channels and generating signed JSON Web Tokens (JWTs) for authorized playback requests.
A playback token is a JWT that you sign (with a playback authorization key) and include with every playback request for a channel that has playback authorization enabled.
In order for Amazon IVS to validate the token, you need to upload the public key that corresponds to the private key you use to sign the token.
var keyPair = new PlaybackKeyPair(this, "PlaybackKeyPair", new PlaybackKeyPairProps {
PublicKeyMaterial = myPublicKeyPemString
});
Then, when creating a channel, specify the authorized property
var myChannel = new Channel(this, "Channel", new ChannelProps {
Authorized = true
});
Recording Configurations
An Amazon IVS Recording Configuration stores settings that specify how a channel's live streams should be recorded. You can configure video quality, thumbnail generation, and where recordings are stored in Amazon S3.
For more information about IVS recording, see IVS Auto-Record to Amazon S3 | Low-Latency Streaming.
You can create a recording configuration:
// create an S3 bucket for storing recordings
var recordingBucket = new Bucket(this, "RecordingBucket");
// create a basic recording configuration
var recordingConfiguration = new RecordingConfiguration(this, "RecordingConfiguration", new RecordingConfigurationProps {
Bucket = recordingBucket
});
Renditions of a Recording
When you stream content to an Amazon IVS channel, auto-record-to-s3 uses the source video to generate multiple renditions.
For more information, see Discovering the Renditions of a Recording.
Bucket recordingBucket;
var recordingConfiguration = new RecordingConfiguration(this, "RecordingConfiguration", new RecordingConfigurationProps {
Bucket = recordingBucket,
// set rendition configuration
RenditionConfiguration = RenditionConfiguration.Custom(new [] { Resolution.HD, Resolution.SD })
});
Thumbnail Generation
You can enable or disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
Thumbnail intervals may range from 1 second to 60 seconds; by default, thumbnail recording is enabled, at an interval of 60 seconds.
For more information, see Thumbnails.
Bucket recordingBucket;
var recordingConfiguration = new RecordingConfiguration(this, "RecordingConfiguration", new RecordingConfigurationProps {
Bucket = recordingBucket,
// set thumbnail settings
ThumbnailConfiguration = ThumbnailConfiguration.Interval(Resolution.HD, new [] { Storage.LATEST, Storage.SEQUENTIAL }, Duration.Seconds(30))
});
Merge Fragmented Streams
The recordingReconnectWindow
property allows you to specify a window of time (in seconds) during which, if your stream is interrupted and a new stream is started, Amazon IVS tries to record to the same S3 prefix as the previous stream.
In other words, if a broadcast disconnects and then reconnects within the specified interval, the multiple streams are considered a single broadcast and merged together.
For more information, see Merge Fragmented Streams.
Bucket recordingBucket;
var recordingConfiguration = new RecordingConfiguration(this, "RecordingConfiguration", new RecordingConfigurationProps {
Bucket = recordingBucket,
// set recording reconnect window
RecordingReconnectWindow = Duration.Seconds(60)
});
Attaching Recording Configuration to a Channel
To enable recording for a channel, specify the recording configuration when creating the channel:
RecordingConfiguration recordingConfiguration;
var channel = new Channel(this, "Channel", new ChannelProps {
// set recording configuration
RecordingConfiguration = recordingConfiguration
});
Classes
Channel | (experimental) A new IVS channel. |
Channel |
(experimental) Properties for creating a new Channel. |
Channel |
(experimental) The channel type, which determines the allowable resolution and bitrate. |
Container |
(experimental) Container Format. |
Latency |
(experimental) Channel latency mode. |
Maximum |
(experimental) Maximum resolution for multitrack input. |
Multitrack |
(experimental) A complex type that specifies multitrack input configuration. |
Playback |
(experimental) A new IVS Playback Key Pair. |
Playback |
(experimental) Properties for creating a new Playback Key Pair. |
Policy | (experimental) Whether multitrack input is allowed or required. |
Preset | (experimental) An optional transcode preset for the channel. |
Recording |
(experimental) The IVS Recording configuration. |
Recording |
(experimental) Properties of the IVS Recording configuration. |
Recording |
(experimental) Thumbnail recording mode. |
Rendition |
(experimental) Rendition configuration for IVS Recording configuration. |
Rendition |
(experimental) Rendition selection mode. |
Resolution | (experimental) Resolution for rendition. |
Storage | (experimental) The format in which thumbnails are recorded for a stream. |
Stream |
(experimental) A new IVS Stream Key. |
Stream |
(experimental) Properties for creating a new Stream Key. |
Thumbnail |
(experimental) Thumbnail configuration for IVS Recording configuration. |
Interfaces
IChannel | (experimental) Represents an IVS Channel. |
IChannel |
(experimental) Properties for creating a new Channel. |
IMultitrack |
(experimental) A complex type that specifies multitrack input configuration. |
IPlayback |
(experimental) Represents an IVS Playback Key Pair. |
IPlayback |
(experimental) Properties for creating a new Playback Key Pair. |
IRecording |
(experimental) Represents the IVS Recording configuration. |
IRecording |
(experimental) Properties of the IVS Recording configuration. |
IStream |
(experimental) Represents an IVS Stream Key. |
IStream |
(experimental) Properties for creating a new Stream Key. |