interface BridgeFlowSource
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeFlowSource |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeFlowSource |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeFlowSource |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeFlowSource |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeFlowSource |
The source of the bridge.
A flow source originates in MediaConnect as an existing cloud flow.
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 |
|---|---|---|
| flow | IFlow | The cloud flow used as a source of this bridge. |
| vpc | Vpc | The VPC interface attachment to use for this source. |
flow
Type:
IFlow
The cloud flow used as a source of this bridge.
vpcInterface?
Type:
Vpc
(optional, default: no VPC interface)
The VPC interface attachment to use for this source.

.NET
Go
Java
Python
TypeScript (