interface SourceRtp
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SourceRtp |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SourceRtp |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SourceRtp |
Python | aws_cdk.aws_mediaconnect_alpha.SourceRtp |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SourceRtp |
Implements
Source
Configuration for RTP.
Example
declare const stack: Stack;
const flow = new Flow(stack, 'MyFlow', {
source: SourceConfiguration.rtp({
flowSourceName: 'rtp-source',
port: 5000,
network: NetworkConfiguration.publicNetwork('203.0.113.0/24'),
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| network | Network | Defines networking configuration. |
| port | number | The port that the flow will be listening on for incoming content. |
| description? | string | A description of the source. |
| flow | string | The name of the source. |
| max | Bitrate | The maximum bitrate for RIST, RTP, and RTP-FEC streams. |
network
Type:
Network
Defines networking configuration.
port
Type:
number
The port that the flow will be listening on for incoming content.
description?
Type:
string
(optional, default: no description)
A description of the source.
This description appears only on the MediaConnect console and will not be seen by the end user.
flowSourceName?
Type:
string
(optional, default: a name is generated automatically)
The name of the source.
maxBitrate?
Type:
Bitrate
(optional, default: no maximum bitrate)
The maximum bitrate for RIST, RTP, and RTP-FEC streams.

.NET
Go
Java
Python
TypeScript (