Interface CfnSubnetCidrBlockProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubnetCidrBlockProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:03.659Z")
@Stability(Stable)
public interface CfnSubnetCidrBlockProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSubnetCidrBlock.
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.ec2.*;
CfnSubnetCidrBlockProps cfnSubnetCidrBlockProps = CfnSubnetCidrBlockProps.builder()
.subnetId("subnetId")
// the properties below are optional
.ipv6CidrBlock("ipv6CidrBlock")
.ipv6IpamPoolId("ipv6IpamPoolId")
.ipv6NetmaskLength(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSubnetCidrBlockPropsstatic final classAn implementation forCfnSubnetCidrBlockProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnetId
The ID of the subnet.- See Also:
-
getIpv6CidrBlock
The IPv6 network range for the subnet, in CIDR notation.- See Also:
-
getIpv6IpamPoolId
An IPv6 IPAM pool ID for the subnet.- See Also:
-
getIpv6NetmaskLength
An IPv6 netmask length for the subnet.- See Also:
-
builder
- Returns:
- a
CfnSubnetCidrBlockProps.BuilderofCfnSubnetCidrBlockProps
-