interface SrtCallerSourceRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnInput.SrtCallerSourceRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnInput_SrtCallerSourceRequestProperty |
Java | software.amazon.awscdk.services.medialive.CfnInput.SrtCallerSourceRequestProperty |
Python | aws_cdk.aws_medialive.CfnInput.SrtCallerSourceRequestProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnInput » SrtCallerSourceRequestProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const srtCallerSourceRequestProperty: medialive.CfnInput.SrtCallerSourceRequestProperty = {
decryption: {
algorithm: 'algorithm',
passphraseSecretArn: 'passphraseSecretArn',
},
minimumLatency: 123,
srtListenerAddress: 'srtListenerAddress',
srtListenerPort: 'srtListenerPort',
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| decryption? | IResolvable | Srt | |
| minimum | number | |
| srt | string | |
| srt | string | |
| stream | string |
decryption?
Type:
IResolvable | Srt
(optional)
minimumLatency?
Type:
number
(optional)
srtListenerAddress?
Type:
string
(optional)
srtListenerPort?
Type:
string
(optional)
streamId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript