interface Smpte2110SdpLocation
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Smpte2110SdpLocation |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Smpte2110SdpLocation |
Java | software.amazon.awscdk.services.medialive.alpha.Smpte2110SdpLocation |
Python | aws_cdk.aws_medialive_alpha.Smpte2110SdpLocation |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Smpte2110SdpLocation |
A reference to an SDP file that describes a SMPTE 2110 stream to ingest.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const smpte2110SdpLocation: medialive_alpha.Smpte2110SdpLocation = {
sdpUrl: 'sdpUrl',
// the properties below are optional
mediaIndex: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| sdp | string | The URL of the SDP file. |
| media | number | The index of the media stream within the SDP to ingest. |
sdpUrl
Type:
string
The URL of the SDP file.
mediaIndex?
Type:
number
(optional, default: service default)
The index of the media stream within the SDP to ingest.
Use when the SDP describes more than one stream of that media type.

.NET
Go
Java
Python
TypeScript (