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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGatewayPropsstatic final classAn implementation forGatewayProps -
Method Summary
Modifier and TypeMethodDescriptionstatic GatewayProps.Builderbuilder()(experimental) The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.default String(experimental) The name of the gateway.(experimental) The list of networks in the gateway.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
(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
(experimental) The name of the gateway.This name can not be modified after the gateway is created.
Default: - autogenerated
-
builder
- Returns:
- a
GatewayProps.BuilderofGatewayProps
-