interface BridgeSourceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeSourceProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeSourceProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeSourceProps |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeSourceProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeSourceProps |
Properties for the bridge source.
Example
declare const stack: Stack;
declare const bridge: Bridge;
declare const flow: Flow;
// Add a flow source to an egress bridge (requires failover to be enabled)
const additionalSource = new BridgeSource(stack, 'AdditionalSource', {
bridgeSourceName: 'backup-source',
bridge: bridge,
source: BridgeSourceConfiguration.flow({
flow: flow,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| bridge | IBridge | The bridge to add this source to. |
| source | Bridge | Configuration for Bridge Source Input. |
| bridge | string | Name of the bridge source. |
bridge
Type:
IBridge
The bridge to add this source to.
source
Type:
Bridge
Configuration for Bridge Source Input.
bridgeSourceName?
Type:
string
(optional, default: autogenerated)
Name of the bridge source.

.NET
Go
Java
Python
TypeScript (