interface BridgeOutputReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaConnect.BridgeOutputReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediaconnect#BridgeOutputReference |
Java | software.amazon.awscdk.interfaces.mediaconnect.BridgeOutputReference |
Python | aws_cdk.interfaces.aws_mediaconnect.BridgeOutputReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediaconnect » BridgeOutputReference |
A reference to a BridgeOutput resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as interfaces_mediaconnect } from 'aws-cdk-lib/interfaces';
const bridgeOutputReference: interfaces_mediaconnect.BridgeOutputReference = {
bridgeArn: 'bridgeArn',
bridgeOutputName: 'bridgeOutputName',
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | string | The BridgeArn of the BridgeOutput resource. |
| bridge | string | The Name of the BridgeOutput resource. |
bridgeArn
Type:
string
The BridgeArn of the BridgeOutput resource.
bridgeOutputName
Type:
string
The Name of the BridgeOutput resource.

.NET
Go
Java
Python
TypeScript