interface BridgeNetworkSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgeSourcePropsMixin.BridgeNetworkSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgeSourcePropsMixin_BridgeNetworkSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgeSourcePropsMixin.BridgeNetworkSourceProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeSourcePropsMixin.BridgeNetworkSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnBridgeSourcePropsMixin » BridgeNetworkSourceProperty |
The source of the bridge.
A network source originates at your premises.
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 bridgeNetworkSourceProperty: mediaconnect_mixins.CfnBridgeSourcePropsMixin.BridgeNetworkSourceProperty = {
multicastIp: 'multicastIp',
multicastSourceSettings: {
multicastSourceIp: 'multicastSourceIp',
},
networkName: 'networkName',
port: 123,
protocol: 'protocol',
};
Properties
| Name | Type | Description |
|---|---|---|
| multicast | string | The network source multicast IP. |
| multicast | IResolvable | Multicast | The settings related to the multicast source. |
| network | string | The network source's gateway network name. |
| port? | number | The network source port. |
| protocol? | string | The network source protocol. |
multicastIp?
Type:
string
(optional)
The network source multicast IP.
multicastSourceSettings?
Type:
IResolvable | Multicast
(optional)
The settings related to the multicast source.
networkName?
Type:
string
(optional)
The network source's gateway network name.
port?
Type:
number
(optional)
The network source port.
protocol?
Type:
string
(optional)
The network source protocol.
AWS Elemental MediaConnect no longer supports the Fujitsu QoS protocol. This reference is maintained for legacy purposes only.

.NET
Go
Java
Python
TypeScript