interface SdiSourceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SdiSourceProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SdiSourceProps |
Java | software.amazon.awscdk.services.medialive.alpha.SdiSourceProps |
Python | aws_cdk.aws_medialive_alpha.SdiSourceProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SdiSourceProps |
Properties for creating an SDI Source.
Example
declare const stack: Stack;
const sdi = new medialive.SdiSource(stack, 'Sdi', {
sdiSourceName: 'camera-1',
type: medialive.SdiType.SINGLE,
});
Properties
| Name | Type | Description |
|---|---|---|
| type | Sdi | Type of SDI input. |
| mode? | Sdi | SDI Mode, only applicable for QUAD type. |
| sdi | string | The name of the SDI source. |
| tags? | { [string]: string } | Tags to add to the SDI source. |
type
Type:
Sdi
Type of SDI input.
mode?
Type:
Sdi
(optional, default: no mode)
SDI Mode, only applicable for QUAD type.
sdiSourceName?
Type:
string
(optional, default: auto-generated name)
The name of the SDI source.
tags?
Type:
{ [string]: string }
(optional, default: no tagging)
Tags to add to the SDI source.

.NET
Go
Java
Python
TypeScript (