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