interface MediaStreamBase
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MediaStreamBase |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MediaStreamBase |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MediaStreamBase |
Python | aws_cdk.aws_mediaconnect_alpha.MediaStreamBase |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MediaStreamBase |
Base configuration for Media Stream.
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 mediaStreamBase: mediaconnect_alpha.MediaStreamBase = {
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 (