interface SrtCallerSourceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtCallerSourceProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtCallerSourceProps |
Java | software.amazon.awscdk.services.medialive.alpha.SrtCallerSourceProps |
Python | aws_cdk.aws_medialive_alpha.SrtCallerSourceProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtCallerSourceProps |
Properties for an SRT caller input.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
import { aws_secretsmanager as secretsmanager } from 'aws-cdk-lib';
declare const secret: secretsmanager.Secret;
declare const srtDecryptionAlgorithm: medialive_alpha.SrtDecryptionAlgorithm;
const srtCallerSourceProps: medialive_alpha.SrtCallerSourceProps = {
srtListenerAddress: 'srtListenerAddress',
srtListenerPort: 123,
// the properties below are optional
decryption: {
algorithm: srtDecryptionAlgorithm,
passphraseSecret: secret,
},
minimumLatency: cdk.Duration.minutes(30),
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| srt | string | The address of the SRT listener to connect to. |
| srt | number | The port of the SRT listener. |
| decryption? | Srt | Decryption settings for the SRT connection. |
| minimum | Duration | The minimum latency. |
| stream | string | The stream ID for the SRT connection. |
srtListenerAddress
Type:
string
The address of the SRT listener to connect to.
srtListenerPort
Type:
number
The port of the SRT listener.
decryption?
Type:
Srt
(optional, default: no decryption)
Decryption settings for the SRT connection.
minimumLatency?
Type:
Duration
(optional, default: service default)
The minimum latency.
streamId?
Type:
string
(optional, default: no stream ID)
The stream ID for the SRT connection.

.NET
Go
Java
Python
TypeScript (