interface SrtCallerUrlOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtCallerUrlOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtCallerUrlOptions |
Java | software.amazon.awscdk.services.medialive.alpha.SrtCallerUrlOptions |
Python | aws_cdk.aws_medialive_alpha.SrtCallerUrlOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtCallerUrlOptions |
Options for a URL-based SRT caller destination (SrtDestination.callerUrl).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import { aws_secretsmanager as secretsmanager } from 'aws-cdk-lib';
declare const secret: secretsmanager.Secret;
const srtCallerUrlOptions: medialive_alpha.SrtCallerUrlOptions = {
encryptionPassphraseSecret: secret,
// the properties below are optional
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | ISecret | The Secrets Manager secret containing the encryption passphrase. |
| stream | string | The stream ID for the SRT connection. |
encryptionPassphraseSecret
Type:
ISecret
The Secrets Manager secret containing the encryption passphrase.
[disable-awslint:prefer-ref-interface]
streamId?
Type:
string
(optional, default: no stream ID)
The stream ID for the SRT connection.

.NET
Go
Java
Python
TypeScript (