interface Smpte2110ReceiverGroupSdpSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnInputPropsMixin.Smpte2110ReceiverGroupSdpSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnInputPropsMixin_Smpte2110ReceiverGroupSdpSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnInputPropsMixin.Smpte2110ReceiverGroupSdpSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnInputPropsMixin.Smpte2110ReceiverGroupSdpSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnInputPropsMixin » 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/cfn-property-mixins';
const smpte2110ReceiverGroupSdpSettingsProperty: medialive.CfnInputPropsMixin.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