interface BridgeOutputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeOutputProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeOutputProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeOutputProps |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeOutputProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeOutputProps |
Properties for the bridge output.
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 bridge: mediaconnect_alpha.Bridge;
declare const bridgeOutputConfiguration: mediaconnect_alpha.BridgeOutputConfiguration;
const bridgeOutputProps: mediaconnect_alpha.BridgeOutputProps = {
bridge: bridge,
output: bridgeOutputConfiguration,
// the properties below are optional
bridgeOutputName: 'bridgeOutputName',
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | IBridge | The bridge that you want to update. |
| output | Bridge | The network output configuration. |
| bridge | string | Bridge output name. |
bridge
Type:
IBridge
The bridge that you want to update.
output
Type:
Bridge
The network output configuration.
bridgeOutputName?
Type:
string
(optional, default: autogenerated)
Bridge output name.

.NET
Go
Java
Python
TypeScript (