interface BridgeNetworkInput
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeNetworkInput |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeNetworkInput |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeNetworkInput |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeNetworkInput |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeNetworkInput |
A named network source for an ingress bridge.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
declare const bridgeProtocol: mediaconnect_alpha.BridgeProtocol;
declare const gatewayNetwork: mediaconnect_alpha.GatewayNetwork;
const bridgeNetworkInput: mediaconnect_alpha.BridgeNetworkInput = {
name: 'name',
source: {
multicastIp: 'multicastIp',
network: gatewayNetwork,
port: 123,
protocol: bridgeProtocol,
// the properties below are optional
multicastSourceIp: 'multicastSourceIp',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the network source. |
| source | Bridge | The network source configuration describing the multicast endpoint the bridge listens to. |
name
Type:
string
The name of the network source.
Must be unique among sources on the bridge.
source
Type:
Bridge
The network source configuration describing the multicast endpoint the bridge listens to.

.NET
Go
Java
Python
TypeScript (