interface BridgeNetworkOutputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeNetworkOutputProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeNetworkOutputProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeNetworkOutputProps |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeNetworkOutputProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeNetworkOutputProps |
Properties for a bridge network output.
Example
declare const stack: Stack;
declare const gateway: Gateway;
declare const flow: Flow;
declare const vpcInterface: VpcInterfaceConfig;
declare const productionNetwork: GatewayNetwork;
const egressBridge = new Bridge(stack, 'MyEgressBridge', {
bridgeName: 'my-egress-bridge',
config: BridgeConfiguration.egress({
maxBitrate: Bitrate.mbps(10),
flowSources: [{
name: 'cloud-source',
source: {
flow: flow,
vpcInterface: vpcInterface,
},
}],
networkOutputs: [{
name: 'on-prem-output',
output: BridgeOutputConfiguration.network({
ipAddress: '192.168.1.200',
port: 5001,
network: productionNetwork,
protocol: BridgeProtocol.RTP,
ttl: 50,
}),
}],
}),
gateway: gateway,
});
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The IP address where the output will send content. |
| network | Gateway | The gateway network this output sends content out of. |
| port | number | The port to use for the output. |
| protocol | Bridge | The protocol to use for the output. |
| ttl | number | Time to live (TTL) for the output packets in hops (1-255). |
ipAddress
Type:
string
The IP address where the output will send content.
network
Type:
Gateway
The gateway network this output sends content out of.
Use {@link GatewayNetwork.define} to create the network and pass the same instance to the gateway and to each output that uses it.
port
Type:
number
The port to use for the output.
protocol
Type:
Bridge
The protocol to use for the output.
ttl
Type:
number
Time to live (TTL) for the output packets in hops (1-255).
TTL represents the maximum number of network hops a packet can traverse before being discarded.

.NET
Go
Java
Python
TypeScript (