NdiDiscoveryServerConfig

class aws_cdk.aws_mediaconnect_alpha.NdiDiscoveryServerConfig(*, discovery_server_address, vpc_interface, discovery_server_port=None)

Bases: object

(experimental) NDI Configuration.

Parameters:
  • discovery_server_address (str) – (experimental) The unique network address of the NDI discovery server.

  • vpc_interface (Union[VpcInterfaceConfig, Dict[str, Any]]) – (experimental) The VPC interface that the NDI discovery server uses to reach the flow.

  • discovery_server_port (Union[int, float, None]) – (experimental) The port for the NDI discovery server. Defaults to 5959 if a custom port isn’t specified. Default: - undefined; when omitted, MediaConnect applies 5959 at deploy time

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
from aws_cdk import aws_ec2 as ec2
from aws_cdk import aws_iam as iam

# network_interface: mediaconnect_alpha.NetworkInterface
# role: iam.Role
# security_group: ec2.SecurityGroup
# subnet: ec2.Subnet

ndi_discovery_server_config = mediaconnect_alpha.NdiDiscoveryServerConfig(
    discovery_server_address="discoveryServerAddress",
    vpc_interface=mediaconnect_alpha.VpcInterfaceConfig(
        name="name",
        role=role,
        security_groups=[security_group],
        subnet=subnet,

        # the properties below are optional
        network_interface_ids=["networkInterfaceIds"],
        network_interface_type=network_interface
    ),

    # the properties below are optional
    discovery_server_port=123
)

Attributes

discovery_server_address

(experimental) The unique network address of the NDI discovery server.

Stability:

experimental

discovery_server_port

(experimental) The port for the NDI discovery server.

Defaults to 5959 if a custom port isn’t specified.

Default:
  • undefined; when omitted, MediaConnect applies 5959 at deploy time

Stability:

experimental

vpc_interface

(experimental) The VPC interface that the NDI discovery server uses to reach the flow.

Stability:

experimental