GatewayNetwork

class aws_cdk.aws_mediaconnect_alpha.GatewayNetwork(*args: Any, **kwargs)

Bases: object

(experimental) A network on a MediaConnect Gateway.

Use {@link GatewayNetwork.define} to create a network and reference it from gateway, bridge source, and bridge output configurations.

Stability:

experimental

Example:

production_network = GatewayNetwork.define(
    name="production",
    cidr_block="10.0.0.0/16"
)

Attributes

cidr_block

(experimental) A unique IP address range to use for this network in CIDR notation.

Stability:

experimental

name

(experimental) The name of the network.

Stability:

experimental

Static Methods

classmethod define(*, cidr_block, name)

(experimental) Define a new gateway network.

Parameters:
  • cidr_block (str) – (experimental) A unique IP address range to use for this network. Must be in CIDR notation (for example, 10.0.0.0/16).

  • name (str) – (experimental) The name of the network. Used to reference this network from bridge sources and outputs, and must be unique among the networks on the gateway. Maximum 64 characters; alphanumeric, hyphens, and underscores only.

Stability:

experimental

Return type:

GatewayNetwork