interface InputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowPropsMixin.InputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowPropsMixin_InputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowPropsMixin.InputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowPropsMixin.InputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » 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 { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const inputConfigurationProperty: mediaconnect.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