interface CfnBridgeOutputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnBridgeOutputProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnBridgeOutputProps |
Java | software.amazon.awscdk.services.mediaconnect.CfnBridgeOutputProps |
Python | aws_cdk.aws_mediaconnect.CfnBridgeOutputProps |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnBridgeOutputProps |
Properties for defining a CfnBridgeOutput.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const cfnBridgeOutputProps: mediaconnect.CfnBridgeOutputProps = {
bridgeArn: 'bridgeArn',
name: 'name',
networkOutput: {
ipAddress: 'ipAddress',
networkName: 'networkName',
port: 123,
protocol: 'protocol',
ttl: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | string | The Amazon Resource Name (ARN) of the bridge that you want to update. |
| name | string | The network output name. |
| network | IResolvable | Bridge | The network output of the bridge. |
bridgeArn
Type:
string
The Amazon Resource Name (ARN) of the bridge that you want to update.
name
Type:
string
The network output name.
This name is used to reference the output and must be unique among outputs in this bridge.
networkOutput
Type:
IResolvable | Bridge
The network output of the bridge.
A network output is delivered to your premises.

.NET
Go
Java
Python
TypeScript