interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowOutputPropsMixin.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowOutputPropsMixin_DestinationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowOutputPropsMixin.DestinationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowOutputPropsMixin.DestinationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const destinationConfigurationProperty: mediaconnect_mixins.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