Interface CfnGatewayMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.323Z")
@Stability(Stable)
public interface CfnGatewayMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnGatewayPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
CfnGatewayMixinProps cfnGatewayMixinProps = CfnGatewayMixinProps.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 classA builder forCfnGatewayMixinPropsstatic final classAn implementation forCfnGatewayMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGatewayMixinProps.Builderbuilder()The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.default StringgetName()The name of the gateway.default ObjectThe list of networks in the gateway.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 gateway.This name can not be modified after the gateway is created.
- See Also:
-
getNetworks
The list of networks in the gateway.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnGatewayPropsMixin.GatewayNetworkProperty>- See Also:
-
builder
- Returns:
- a
CfnGatewayMixinProps.BuilderofCfnGatewayMixinProps
-