interface SourceRist
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SourceRist |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SourceRist |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SourceRist |
Python | aws_cdk.aws_mediaconnect_alpha.SourceRist |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SourceRist |
Implements
Source
Configuration for RIST.
Example
declare const stack: Stack;
declare const securityGroup: ec2.ISecurityGroup;
declare const subnet: ec2.ISubnet;
declare const role: iam.IRole;
const vpcInterface = VpcInterface.define({
vpcInterfaceName: 'my-vpc-interface',
role: role,
securityGroups: [securityGroup],
subnet: subnet,
});
const flow = new Flow(stack, 'MyFlow', {
source: SourceConfiguration.rist({
flowSourceName: 'vpc-source',
description: 'VPC-based source',
port: 5000,
maxLatency: Duration.millis(2000),
network: NetworkConfiguration.vpc(vpcInterface),
}),
vpcInterfaces: [vpcInterface],
});
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. |
| max | Duration | The maximum latency in milliseconds for a RIST or Zixi-based source. |
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.
maxLatency?
Type:
Duration
(optional, default: undefined; when omitted, MediaConnect applies its service default maximum latency)
The maximum latency in milliseconds for a RIST or Zixi-based source.

.NET
Go
Java
Python
TypeScript (