Interface CfnGatewayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:25:01.154Z")
@Stability(Stable)
public interface CfnGatewayProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGateway
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.mediaconnect.*; CfnGatewayProps cfnGatewayProps = CfnGatewayProps.builder() .egressCidrBlocks(List.of("egressCidrBlocks")) .name("name") .networks(List.of(GatewayNetworkProperty.builder() .cidrBlock("cidrBlock") .name("name") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGatewayProps
static final class
An implementation forCfnGatewayProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGatewayProps.Builder
builder()
The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.getName()
The name of the network.The list of networks that you want to add.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEgressCidrBlocks
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.
- See Also:
-
getName
The name of the network.This name is used to reference the network and must be unique among networks in this gateway.
- See Also:
-
getNetworks
The list of networks that you want to add.- See Also:
-
builder
- Returns:
- a
CfnGatewayProps.Builder
ofCfnGatewayProps
-