interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnFlowOutput.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlowOutput_DestinationConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnFlowOutput.DestinationConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnFlowOutput.DestinationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnFlowOutput » DestinationConfigurationProperty |
The transport parameters that you want to associate with an outbound 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-lib';
const destinationConfigurationProperty: mediaconnect.CfnFlowOutput.DestinationConfigurationProperty = {
destinationIp: 'destinationIp',
destinationPort: 123,
interface: {
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The IP address where you want MediaConnect to send contents of the media stream. |
| destination | number | The port that you want MediaConnect to use when it distributes the media stream to the output. |
| interface | IResolvable | Interface | The VPC interface that you want to use for the media stream associated with the output. |
destinationIp
Type:
string
The IP address where you want MediaConnect to send contents of the media stream.
destinationPort
Type:
number
The port that you want MediaConnect to use when it distributes the media stream to the output.
interface
Type:
IResolvable | Interface
The VPC interface that you want to use for the media stream associated with the output.

.NET
Go
Java
Python
TypeScript