ClusterNetworkSettings

class aws_cdk.aws_medialive_alpha.ClusterNetworkSettings(*, default_route=None, interface_mappings=None)

Bases: object

(experimental) Network settings for a MediaLive Cluster.

Parameters:
  • default_route (Optional[str]) – (experimental) The default route for the cluster. Default: - no default route

  • interface_mappings (Optional[Sequence[Union[InterfaceMapping, Dict[str, Any]]]]) – (experimental) The interface mappings for the cluster. Default: - no interface mappings

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_medialive_alpha as medialive_alpha

cluster_network_settings = medialive_alpha.ClusterNetworkSettings(
    default_route="defaultRoute",
    interface_mappings=[medialive_alpha.InterfaceMapping(
        logical_interface_name="logicalInterfaceName",
        network_id="networkId"
    )]
)

Attributes

default_route

(experimental) The default route for the cluster.

Default:
  • no default route

Stability:

experimental

interface_mappings

(experimental) The interface mappings for the cluster.

Default:
  • no interface mappings

Stability:

experimental