interface InputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowPropsMixin.InputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowPropsMixin_InputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowPropsMixin.InputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowPropsMixin.InputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowPropsMixin » InputConfigurationProperty |
The transport parameters that are associated with an incoming media stream.
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 inputConfigurationProperty: mediaconnect_mixins.CfnFlowPropsMixin.InputConfigurationProperty = {
inputPort: 123,
interface: {
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| input | number | The port that the flow listens on for an incoming media stream. |
| interface? | IResolvable | Interface | The VPC interface where the media stream comes in from. |
inputPort?
Type:
number
(optional)
The port that the flow listens on for an incoming media stream.
interface?
Type:
IResolvable | Interface
(optional)
The VPC interface where the media stream comes in from.

.NET
Go
Java
Python
TypeScript