interface SourceZixiPush
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SourceZixiPush |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SourceZixiPush |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SourceZixiPush |
Python | aws_cdk.aws_mediaconnect_alpha.SourceZixiPush |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SourceZixiPush |
Implements
Source
Configuration for Zixi Push.
No port option is exposed: MediaConnect assigns the Zixi Push ingest port itself โ public sources are served on 2088, VPC sources are auto-assigned a port in 2090โ2099. The service rejects any user-supplied port value, so the L2 surface doesn't accept one.
See also: https://docs.aws.amazon.com/mediaconnect/latest/ug/source-ports.html
Example
declare const stack: Stack;
const flow = new Flow(stack, 'MyFlow', {
source: SourceConfiguration.zixiPush({
flowSourceName: 'zixi-source',
maxLatency: Duration.millis(2000),
network: NetworkConfiguration.publicNetwork('203.0.113.0/24'),
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| network | Network | Defines networking configuration. |
| decryption? | Static | Decrypt source with static keys. |
| description? | string | A description of the source. |
| flow | string | The name of the source. |
| max | Duration | The maximum latency in milliseconds for a Zixi-based source. |
| stream | string | The stream ID that you want to use for the transport. |
network
Type:
Network
Defines networking configuration.
decryption?
Type:
Static
(optional, default: no decryption)
Decrypt source with static keys.
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.
maxLatency?
Type:
Duration
(optional, default: chosen by MediaConnect)
The maximum latency in milliseconds for a Zixi-based source.
streamId?
Type:
string
(optional, default: no stream ID)
The stream ID that you want to use for the transport.
This parameter applies only to Zixi-based streams.

.NET
Go
Java
Python
TypeScript (