interface InputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputProps |
Java | software.amazon.awscdk.services.medialive.alpha.InputProps |
Python | aws_cdk.aws_medialive_alpha.InputProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputProps |
Properties for creating a MediaLive Input.
Example
declare const stack: Stack;
declare const passphrase: secretsmanager.ISecret;
const sg = new medialive.InputSecurityGroup(stack, 'SrtSg', {
allowlistRules: ['203.0.113.0/24'],
});
new medialive.Input(stack, 'SrtListenerInput', {
inputName: 'srt-listener',
input: medialive.InputConfiguration.srtListener({
inputSecurityGroups: [sg],
minimumLatency: Duration.millis(500),
streamId: 'my-stream-id',
decryption: {
algorithm: medialive.SrtDecryptionAlgorithm.AES256,
passphraseSecret: passphrase,
},
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| input | Input | Input configuration that defines the input type and source settings. |
| input | string | Input name. |
| input | Input | The network location of the input โ AWS cloud or on-premises (MediaLive Anywhere). |
| tags? | { [string]: string } | Tags to add to the input. |
input
Type:
Input
Input configuration that defines the input type and source settings.
inputName?
Type:
string
(optional, default: auto-generated)
Input name.
inputNetworkLocation?
Type:
Input
(optional, default: AWS, applied by MediaLive)
The network location of the input โ AWS cloud or on-premises (MediaLive Anywhere).
tags?
Type:
{ [string]: string }
(optional, default: no tags)
Tags to add to the input.

.NET
Go
Java
Python
TypeScript (