interface IngressBridgeConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.IngressBridgeConfiguration |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#IngressBridgeConfiguration |
Java | software.amazon.awscdk.services.mediaconnect.alpha.IngressBridgeConfiguration |
Python | aws_cdk.aws_mediaconnect_alpha.IngressBridgeConfiguration |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป IngressBridgeConfiguration |
Ingress bridge configuration.
Example
declare const stack: Stack;
const productionNetwork = GatewayNetwork.define({
cidrBlock: '192.168.1.0/24',
name: 'production-network',
});
const gateway = new Gateway(stack, 'MyGateway', {
gatewayName: 'my-gateway',
egressCidrBlocks: ['10.0.0.0/16'],
networks: [productionNetwork],
});
const ingressBridge = new Bridge(stack, 'MyIngressBridge', {
bridgeName: 'my-ingress-bridge',
config: BridgeConfiguration.ingress({
maxBitrate: Bitrate.mbps(10),
maxOutputs: 2,
networkSources: [{
name: 'on-prem-source',
source: {
protocol: BridgeProtocol.RTP,
network: productionNetwork,
multicastIp: '239.1.1.1',
port: 5000,
},
}],
}),
gateway: gateway,
});
Properties
| Name | Type | Description |
|---|---|---|
| max | Bitrate | The maximum expected bitrate (in bps) of the bridge. |
| max | number | The maximum number of outputs on the ingress bridge. |
| network | Bridge[] | The network sources for the ingress bridge. |
maxBitrate
Type:
Bitrate
The maximum expected bitrate (in bps) of the bridge.
maxOutputs
Type:
number
The maximum number of outputs on the ingress bridge.
networkSources
Type:
Bridge[]
The network sources for the ingress bridge.

.NET
Go
Java
Python
TypeScript (