You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The decryption settings for the SRT caller source. Present only if the source has decryption enabled.
4232
+
* @public
4233
+
*/
4234
+
exportinterfaceSrtCallerDecryption{
4235
+
/**
4236
+
* The algorithm used to encrypt content.
4237
+
* @public
4238
+
*/
4239
+
Algorithm?: Algorithm;
4240
+
4241
+
/**
4242
+
* The ARN for the secret in Secrets Manager. Someone in your organization must create a secret and provide you with its ARN. The secret holds the passphrase that MediaLive uses to decrypt the source content.
4243
+
* @public
4244
+
*/
4245
+
PassphraseSecretArn?: string;
4246
+
}
4247
+
4248
+
/**
4249
+
* The configuration for a source that uses SRT as the connection protocol. In terms of establishing the connection, MediaLive is always caller and the upstream system is always the listener. In terms of transmission of the source content, MediaLive is always the receiver and the upstream system is always the sender.
4250
+
* @public
4251
+
*/
4252
+
exportinterfaceSrtCallerSource{
4253
+
/**
4254
+
* The decryption settings for the SRT caller source. Present only if the source has decryption enabled.
4255
+
* @public
4256
+
*/
4257
+
Decryption?: SrtCallerDecryption;
4258
+
4259
+
/**
4260
+
* The preferred latency (in milliseconds) for implementing packet loss and recovery. Packet recovery is a key feature of SRT.
4261
+
* @public
4262
+
*/
4263
+
MinimumLatency?: number;
4264
+
4265
+
/**
4266
+
* The IP address at the upstream system (the listener) that MediaLive (the caller) connects to.
4267
+
* @public
4268
+
*/
4269
+
SrtListenerAddress?: string;
4270
+
4271
+
/**
4272
+
* The port at the upstream system (the listener) that MediaLive (the caller) connects to.
4273
+
* @public
4274
+
*/
4275
+
SrtListenerPort?: string;
4276
+
4277
+
/**
4278
+
* The stream ID, if the upstream system uses this identifier.
4279
+
* @public
4280
+
*/
4281
+
StreamId?: string;
4282
+
}
4283
+
4284
+
/**
4285
+
* The configured sources for this SRT input.
4286
+
* @public
4287
+
*/
4288
+
exportinterfaceSrtSettings{
4289
+
/**
4290
+
* Placeholder documentation for __listOfSrtCallerSource
0 commit comments