interface Smpte2110ReceiverGroupSdpSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnInput_Smpte2110ReceiverGroupSdpSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty |
Python | aws_cdk.aws_medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnInput » Smpte2110ReceiverGroupSdpSettingsProperty |
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 smpte2110ReceiverGroupSdpSettingsProperty: medialive.CfnInput.Smpte2110ReceiverGroupSdpSettingsProperty = {
ancillarySdps: [{
mediaIndex: 123,
sdpUrl: 'sdpUrl',
}],
audioSdps: [{
mediaIndex: 123,
sdpUrl: 'sdpUrl',
}],
videoSdp: {
mediaIndex: 123,
sdpUrl: 'sdpUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ancillary | IResolvable | (IResolvable | Input)[] | |
| audio | IResolvable | (IResolvable | Input)[] | |
| video | IResolvable | Input |
ancillarySdps?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
audioSdps?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
videoSdp?
Type:
IResolvable | Input
(optional)

.NET
Go
Java
Python
TypeScript