Interface BridgeAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BridgeAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.130Z")
@Stability(Experimental)
public interface BridgeAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.mediaconnect.alpha.*;
BridgeType bridgeType;
BridgeAttributes bridgeAttributes = BridgeAttributes.builder()
.bridgeArn("bridgeArn")
// the properties below are optional
.bridgeName("bridgeName")
.bridgeType(bridgeType)
.isFailoverEnabled(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBridgeAttributesstatic final classAn implementation forBridgeAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic BridgeAttributes.Builderbuilder()(experimental) The ARN of the bridge.default String(experimental) The name of the bridge.default BridgeType(experimental) Indicates what type of bridge is imported.default Boolean(experimental) Failover Configuration for Bridge.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBridgeArn
(experimental) The ARN of the bridge. -
getBridgeName
(experimental) The name of the bridge.Not encoded in the bridge ARN, so must be provided explicitly if the imported bridge needs to expose
bridgeName.Default: - bridgeName is not available on the imported construct
-
getBridgeType
(experimental) 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.Default: - bridgeType is not available on the imported construct
-
getIsFailoverEnabled
(experimental) Failover Configuration for Bridge.Default: false
-
builder
- Returns:
- a
BridgeAttributes.BuilderofBridgeAttributes
-