interface MediaStreamSourceConfigurationCdi
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MediaStreamSourceConfigurationCdi |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MediaStreamSourceConfigurationCdi |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MediaStreamSourceConfigurationCdi |
Python | aws_cdk.aws_mediaconnect_alpha.MediaStreamSourceConfigurationCdi |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MediaStreamSourceConfigurationCdi |
Options for Media Stream Source Configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
declare const encoding: mediaconnect_alpha.Encoding;
declare const mediaStream: mediaconnect_alpha.MediaStream;
const mediaStreamSourceConfigurationCdi: mediaconnect_alpha.MediaStreamSourceConfigurationCdi = {
encoding: encoding,
mediaStream: mediaStream,
};
Properties
| Name | Type | Description |
|---|---|---|
| encoding | Encoding | The format that was used to encode the data. |
| media | Media | The name of the media stream. |
encoding
Type:
Encoding
The format that was used to encode the data.
For ancillary data streams, set the encoding name to smpte291. If the encoding name is smpte291, set the color space to one of the following: BT601, BT709, BT2020, or BT2100. For all other ancillary data streams, set the color space to SDR-NOCOLOR.
mediaStream
Type:
Media
The name of the media stream.

.NET
Go
Java
Python
TypeScript (