interface MediaStreamSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowPropsMixin.MediaStreamSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowPropsMixin_MediaStreamSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowPropsMixin.MediaStreamSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowPropsMixin.MediaStreamSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowPropsMixin » MediaStreamSourceConfigurationProperty |
The media stream that is associated with the source, and the parameters for that association.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const mediaStreamSourceConfigurationProperty: mediaconnect_mixins.CfnFlowPropsMixin.MediaStreamSourceConfigurationProperty = {
encodingName: 'encodingName',
inputConfigurations: [{
inputPort: 123,
interface: {
name: 'name',
},
}],
mediaStreamName: 'mediaStreamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| encoding | string | The format that was used to encode the data. |
| input | IResolvable | (IResolvable | Input)[] | The media streams that you want to associate with the source. |
| media | string | A name that helps you distinguish one media stream from another. |
encodingName?
Type:
string
(optional)
The format that was used to encode the data.
For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.
inputConfigurations?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
The media streams that you want to associate with the source.
mediaStreamName?
Type:
string
(optional)
A name that helps you distinguish one media stream from another.

.NET
Go
Java
Python
TypeScript