Interface GatewayProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
GatewayProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.171Z") @Stability(Experimental) public interface GatewayProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for the MediaConnect Gateway.

Example:

 Stack stack;
 GatewayNetwork productionNetwork = GatewayNetwork.define(GatewayNetworkDefineProps.builder()
         .cidrBlock("192.168.1.0/24")
         .name("production-network")
         .build());
 Gateway gateway = Gateway.Builder.create(stack, "MyGateway")
         .gatewayName("my-gateway")
         .egressCidrBlocks(List.of("10.0.0.0/16"))
         .networks(List.of(productionNetwork))
         .build();
 
  • Method Details

    • getEgressCidrBlocks

      @Stability(Experimental) @NotNull List<String> getEgressCidrBlocks()
      (experimental) The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.

      These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

    • getNetworks

      @Stability(Experimental) @NotNull List<GatewayNetwork> getNetworks()
      (experimental) The list of networks in the gateway.

      A gateway must have between 1 and 4 networks. Provide the initial set here; use addNetwork() to add more (up to 4 total).

    • getGatewayName

      @Stability(Experimental) @Nullable default String getGatewayName()
      (experimental) The name of the gateway.

      This name can not be modified after the gateway is created.

      Default: - autogenerated

    • builder

      @Stability(Experimental) static GatewayProps.Builder builder()
      Returns:
      a GatewayProps.Builder of GatewayProps