java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.mediaconnect.alpha.GatewayNetwork
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.170Z") @Stability(Experimental) public class GatewayNetwork extends software.amazon.jsii.JsiiObject
(experimental) A network on a MediaConnect Gateway.

Use

invalid reference
GatewayNetwork.define
to create a network and reference it from gateway, bridge source, and bridge output configurations.

Example:

 GatewayNetwork productionNetwork = GatewayNetwork.define(GatewayNetworkDefineProps.builder()
         .name("production")
         .cidrBlock("10.0.0.0/16")
         .build());
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    GatewayNetwork(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    GatewayNetwork(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) Define a new gateway network.
    (experimental) A unique IP address range to use for this network in CIDR notation.
    (experimental) The name of the network.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • GatewayNetwork

      protected GatewayNetwork(software.amazon.jsii.JsiiObjectRef objRef)
    • GatewayNetwork

      protected GatewayNetwork(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • define

      @Stability(Experimental) @NotNull public static GatewayNetwork define(@NotNull GatewayNetworkDefineProps props)
      (experimental) Define a new gateway network.

      Parameters:
      props - network properties. This parameter is required.
    • getCidrBlock

      @Stability(Experimental) @NotNull public String getCidrBlock()
      (experimental) A unique IP address range to use for this network in CIDR notation.
    • getName

      @Stability(Experimental) @NotNull public String getName()
      (experimental) The name of the network.