interface SrtCallerProtocolProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SrtCallerProtocolProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SrtCallerProtocolProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SrtCallerProtocolProps |
Python | aws_cdk.aws_mediaconnect_alpha.SrtCallerProtocolProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SrtCallerProtocolProps |
Properties for SRT Caller protocol configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
import * as cdk from 'aws-cdk-lib';
import { aws_iam as iam } from 'aws-cdk-lib';
import { aws_secretsmanager as secretsmanager } from 'aws-cdk-lib';
declare const role: iam.Role;
declare const secret: secretsmanager.Secret;
const srtCallerProtocolProps: mediaconnect_alpha.SrtCallerProtocolProps = {
minimumLatency: cdk.Duration.minutes(30),
sourceAddress: 'sourceAddress',
sourcePort: 123,
// the properties below are optional
decryptionConfiguration: {
secret: secret,
// the properties below are optional
role: role,
},
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| minimum | Duration | Minimum latency for SRT. |
| source | string | Source IP address to connect to. |
| source | number | Source port to connect to. |
| decryption | Router | Optional decryption configuration for encrypted SRT streams. |
| stream | string | Optional stream ID for SRT connection. |
minimumLatency
Type:
Duration
Minimum latency for SRT.
sourceAddress
Type:
string
Source IP address to connect to.
sourcePort
Type:
number
Source port to connect to.
decryptionConfiguration?
Type:
Router
(optional, default: No decryption)
Optional decryption configuration for encrypted SRT streams.
streamId?
Type:
string
(optional, default: No stream ID)
Optional stream ID for SRT connection.

.NET
Go
Java
Python
TypeScript (