BridgeAttributes

class aws_cdk.aws_mediaconnect_alpha.BridgeAttributes(*, bridge_arn, bridge_name=None, bridge_type=None, is_failover_enabled=None)

Bases: object

(experimental) Attributes for importing an existing Bridge.

Parameters:
  • bridge_arn (str) – (experimental) The ARN of the bridge.

  • bridge_name (Optional[str]) – (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

  • bridge_type (Optional[BridgeType]) – (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

  • is_failover_enabled (Optional[bool]) – (experimental) Failover Configuration for Bridge. Default: false

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_mediaconnect_alpha as mediaconnect_alpha

# bridge_type: mediaconnect_alpha.BridgeType

bridge_attributes = mediaconnect_alpha.BridgeAttributes(
    bridge_arn="bridgeArn",

    # the properties below are optional
    bridge_name="bridgeName",
    bridge_type=bridge_type,
    is_failover_enabled=False
)

Attributes

bridge_arn

(experimental) The ARN of the bridge.

Stability:

experimental

bridge_name

(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

Stability:

experimental

bridge_type

(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

Stability:

experimental

is_failover_enabled

(experimental) Failover Configuration for Bridge.

Default:

false

Stability:

experimental