interface BridgeAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeAttributes |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeAttributes |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeAttributes |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeAttributes |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeAttributes |
Attributes for importing an existing 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 bridgeType: mediaconnect_alpha.BridgeType;
const bridgeAttributes: mediaconnect_alpha.BridgeAttributes = {
bridgeArn: 'bridgeArn',
// the properties below are optional
bridgeName: 'bridgeName',
bridgeType: bridgeType,
isFailoverEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | string | The ARN of the bridge. |
| bridge | string | The name of the bridge. |
| bridge | Bridge | Indicates what type of bridge is imported. |
| is | boolean | Failover Configuration for Bridge. |
bridgeArn
Type:
string
The ARN of the bridge.
bridgeName?
Type:
string
(optional, default: bridgeName is not available on the imported construct)
The name of the bridge.
Not encoded in the bridge ARN, so must be provided explicitly if the imported
bridge needs to expose bridgeName.
bridgeType?
Type:
Bridge
(optional, default: bridgeType is not available on the imported construct)
Indicates what type of bridge is imported.
Not encoded in the bridge ARN, so must be provided explicitly if the imported
bridge is used with addOutput() or other methods that need the bridge type.
isFailoverEnabled?
Type:
boolean
(optional, default: false)
Failover Configuration for Bridge.

.NET
Go
Java
Python
TypeScript (