RouterNetworkInterfaceAttributes

class aws_cdk.aws_mediaconnect_alpha.RouterNetworkInterfaceAttributes(*, router_network_interface_arn, router_network_interface_id=None)

Bases: object

(experimental) Attributes for importing an existing Router Network Interface.

Parameters:
  • router_network_interface_arn (str) – (experimental) The Amazon Resource Name (ARN) of the router network interface.

  • router_network_interface_id (Optional[str]) – (experimental) The unique identifier of the router network interface. Default: - accessing routerNetworkInterfaceId on the imported interface throws; only provide when available.

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

router_network_interface_attributes = mediaconnect_alpha.RouterNetworkInterfaceAttributes(
    router_network_interface_arn="routerNetworkInterfaceArn",

    # the properties below are optional
    router_network_interface_id="routerNetworkInterfaceId"
)

Attributes

router_network_interface_arn

(experimental) The Amazon Resource Name (ARN) of the router network interface.

Stability:

experimental

router_network_interface_id

(experimental) The unique identifier of the router network interface.

Default:
  • accessing routerNetworkInterfaceId on the imported interface throws; only provide when available.

Stability:

experimental