interface SrtSettingsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnInput.SrtSettingsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnInput_SrtSettingsRequestProperty |
Java | software.amazon.awscdk.services.medialive.CfnInput.SrtSettingsRequestProperty |
Python | aws_cdk.aws_medialive.CfnInput.SrtSettingsRequestProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnInput » SrtSettingsRequestProperty |
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 srtSettingsRequestProperty: medialive.CfnInput.SrtSettingsRequestProperty = {
srtCallerSources: [{
decryption: {
algorithm: 'algorithm',
passphraseSecretArn: 'passphraseSecretArn',
},
minimumLatency: 123,
srtListenerAddress: 'srtListenerAddress',
srtListenerPort: 'srtListenerPort',
streamId: 'streamId',
}],
srtListenerSettings: {
decryption: {
algorithm: 'algorithm',
passphraseSecretArn: 'passphraseSecretArn',
},
minimumLatency: 123,
streamId: 'streamId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| srt | IResolvable | (IResolvable | Srt)[] | |
| srt | IResolvable | Srt |
srtCallerSources?
Type:
IResolvable | (IResolvable | Srt)[]
(optional)
srtListenerSettings?
Type:
IResolvable | Srt
(optional)

.NET
Go
Java
Python
TypeScript