MergeConfigurationProps

class aws_cdk.aws_mediaconnect_alpha.MergeConfigurationProps(*, merge_recovery_window, network_interface, protocols)

Bases: object

(experimental) Properties for merge Router Input configuration.

Parameters:
  • merge_recovery_window (Duration) – (experimental) Recovery window for merge operation.

  • network_interface (IRouterNetworkInterface) – (experimental) Network interface for the Router Input.

  • protocols (Sequence[RouterInputProtocol]) – (experimental) Array of exactly 2 protocol configurations for merge (must be same non-SRT protocol type).

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
import aws_cdk as cdk

# router_input_protocol: mediaconnect_alpha.RouterInputProtocol
# router_network_interface: mediaconnect_alpha.RouterNetworkInterface

merge_configuration_props = mediaconnect_alpha.MergeConfigurationProps(
    merge_recovery_window=cdk.Duration.minutes(30),
    network_interface=router_network_interface,
    protocols=[router_input_protocol]
)

Attributes

merge_recovery_window

(experimental) Recovery window for merge operation.

Stability:

experimental

network_interface

(experimental) Network interface for the Router Input.

Stability:

experimental

protocols

(experimental) Array of exactly 2 protocol configurations for merge (must be same non-SRT protocol type).

Stability:

experimental