class SdiType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SdiType |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SdiType |
Java | software.amazon.awscdk.services.medialive.alpha.SdiType |
Python | aws_cdk.aws_medialive_alpha.SdiType |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SdiType |
The type of SDI input.
Example
declare const stack: Stack;
const sdi = new medialive.SdiSource(stack, 'Sdi', {
sdiSourceName: 'camera-1',
type: medialive.SdiType.SINGLE,
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static QUAD | Sdi | Quad SDI input. |
| static SINGLE | Sdi | Single SDI input. |
value
Type:
string
The underlying string value passed to CloudFormation.
static QUAD
Type:
Sdi
Quad SDI input.
static SINGLE
Type:
Sdi
Single SDI input.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): SdiType
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (