interface BridgeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeProps |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeProps |
Properties for the Bridge.
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 |
|---|---|---|
| config | Bridge | The bridge configuration specifying ingress or egress settings. |
| gateway | IGateway | The gateway that the bridge is associated with. |
| bridge | string | The name of the bridge. |
| source | Bridge | The source failover configuration for the bridge. |
config
Type:
Bridge
The bridge configuration specifying ingress or egress settings.
gateway
Type:
IGateway
The gateway that the bridge is associated with.
bridgeName?
Type:
string
(optional, default: autogenerated)
The name of the bridge.
Cannot be modified after the bridge is created.
sourceFailoverConfig?
Type:
Bridge
(optional, default: No failover configuration)
The source failover configuration for the bridge.

.NET
Go
Java
Python
TypeScript (