interface SrtSettingsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnInputPropsMixin.SrtSettingsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnInputPropsMixin_SrtSettingsRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnInputPropsMixin.SrtSettingsRequestProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnInputPropsMixin.SrtSettingsRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnInputPropsMixin » SrtSettingsRequestProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const srtSettingsRequestProperty: medialive_mixins.CfnInputPropsMixin.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