Interface CfnNetworkMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.563Z")
@Stability(Stable)
public interface CfnNetworkMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnNetworkPropsMixin.
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.medialive.*;
CfnNetworkMixinProps cfnNetworkMixinProps = CfnNetworkMixinProps.builder()
.ipPools(List.of(IpPoolProperty.builder()
.cidr("cidr")
.build()))
.name("name")
.routes(List.of(RouteProperty.builder()
.cidr("cidr")
.gateway("gateway")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkMixinPropsstatic final classAn implementation forCfnNetworkMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnNetworkMixinProps.Builderbuilder()default ObjectThe list of IP address cidr pools for the network.default StringgetName()The user-specified name of the Network to be created.default ObjectThe routes for the network.getTags()A collection of key-value pairs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpPools
The list of IP address cidr pools for the network.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnNetworkPropsMixin.IpPoolProperty>- See Also:
-
getName
The user-specified name of the Network to be created.- See Also:
-
getRoutes
The routes for the network.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnNetworkPropsMixin.RouteProperty>- See Also:
-
getTags
A collection of key-value pairs.- See Also:
-
builder
- Returns:
- a
CfnNetworkMixinProps.BuilderofCfnNetworkMixinProps
-