RouterInputAttributes

class aws_cdk.aws_mediaconnect_alpha.RouterInputAttributes(*, router_input_arn, ip_address=None, router_input_id=None)

Bases: object

(experimental) Attributes for importing an existing Router Input.

Parameters:
  • router_input_arn (str) – (experimental) The Amazon Resource Name (ARN) of the router input.

  • ip_address (Optional[str]) – (experimental) The IP address that the router input uses to ingest content. Default: - accessing ipAddress on the imported input throws; only provide when available.

  • router_input_id (Optional[str]) – (experimental) The unique identifier of the router input. Default: - accessing routerInputId on the imported input 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_input_attributes = mediaconnect_alpha.RouterInputAttributes(
    router_input_arn="routerInputArn",

    # the properties below are optional
    ip_address="ipAddress",
    router_input_id="routerInputId"
)

Attributes

ip_address

(experimental) The IP address that the router input uses to ingest content.

Default:
  • accessing ipAddress on the imported input throws; only provide when available.

Stability:

experimental

router_input_arn

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

Stability:

experimental

router_input_id

(experimental) The unique identifier of the router input.

Default:
  • accessing routerInputId on the imported input throws; only provide when available.

Stability:

experimental