interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowOutputPropsMixin.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowOutputPropsMixin_DestinationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowOutputPropsMixin.DestinationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowOutputPropsMixin.DestinationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnFlowOutputPropsMixin » 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/cfn-property-mixins';
const destinationConfigurationProperty: mediaconnect.CfnFlowOutputPropsMixin.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
(optional)
The IP address where you want MediaConnect to send contents of the media stream.
destinationPort?
Type:
number
(optional)
The port that you want MediaConnect to use when it distributes the media stream to the output.
interface?
Type:
IResolvable | Interface
(optional)
The VPC interface that you want to use for the media stream associated with the output.

.NET
Go
Java
Python
TypeScript