interface BridgeNetworkOutput
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeNetworkOutput |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeNetworkOutput |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeNetworkOutput |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeNetworkOutput |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeNetworkOutput |
A named network output for an egress bridge.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
declare const bridgeOutputConfiguration: mediaconnect_alpha.BridgeOutputConfiguration;
const bridgeNetworkOutput: mediaconnect_alpha.BridgeNetworkOutput = {
name: 'name',
output: bridgeOutputConfiguration,
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the network output. Must be unique among outputs on the bridge. |
| output | Bridge | The network configuration describing where this output sends content. |
name
Type:
string
The name of the network output. Must be unique among outputs on the bridge.
Used as the physical name of the underlying CFN resource.
output
Type:
Bridge
The network configuration describing where this output sends content.

.NET
Go
Java
Python
TypeScript (