NetworkRoute

class aws_cdk.aws_medialive_alpha.NetworkRoute(*, cidr, gateway)

Bases: object

(experimental) A route for a MediaLive Network.

Parameters:
  • cidr (str) – (experimental) The CIDR block for the route.

  • gateway (str) – (experimental) The gateway for the route.

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

network_route = medialive_alpha.NetworkRoute(
    cidr="cidr",
    gateway="gateway"
)

Attributes

cidr

(experimental) The CIDR block for the route.

Stability:

experimental

gateway

(experimental) The gateway for the route.

Stability:

experimental