interface MediaStreamAncillaryData
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MediaStreamAncillaryData |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MediaStreamAncillaryData |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MediaStreamAncillaryData |
Python | aws_cdk.aws_mediaconnect_alpha.MediaStreamAncillaryData |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MediaStreamAncillaryData |
Implements
Media
A media stream represents one component of your content, such as video, audio, or ancillary data.
After you add a media stream to your flow, you can associate it with sources and outputs that use the ST 2110 JPEG XS or CDI protocol.
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';
const mediaStreamAncillaryData: mediaconnect_alpha.MediaStreamAncillaryData = {
mediaStreamId: 123,
mediaStreamName: 'mediaStreamName',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| media | number | A unique identifier for the media stream. |
| media | string | A name that helps you distinguish one media stream from another. |
| description? | string | A description that can help you quickly identify what your media stream is used for. |
mediaStreamId
Type:
number
A unique identifier for the media stream.
mediaStreamName
Type:
string
A name that helps you distinguish one media stream from another.
description?
Type:
string
(optional, default: no description)
A description that can help you quickly identify what your media stream is used for.

.NET
Go
Java
Python
TypeScript (