interface SdiSourceMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnNode.SdiSourceMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnNode_SdiSourceMappingProperty |
Java | software.amazon.awscdk.services.medialive.CfnNode.SdiSourceMappingProperty |
Python | aws_cdk.aws_medialive.CfnNode.SdiSourceMappingProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnNode » SdiSourceMappingProperty |
SDI source mapping.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const sdiSourceMappingProperty: medialive.CfnNode.SdiSourceMappingProperty = {
cardNumber: 123,
channelNumber: 123,
sdiSource: 'sdiSource',
};
Properties
| Name | Type | Description |
|---|---|---|
| card | number | The card number. |
| channel | number | The channel number. |
| sdi | string | The SDI source. |
cardNumber?
Type:
number
(optional)
The card number.
channelNumber?
Type:
number
(optional)
The channel number.
sdiSource?
Type:
string
(optional)
The SDI source.

.NET
Go
Java
Python
TypeScript