Interface CfnSubnetCidrBlockProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubnetCidrBlockProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.041Z")
@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() .ipv6CidrBlock("ipv6CidrBlock") .subnetId("subnetId") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSubnetCidrBlockProps
static final class
An implementation forCfnSubnetCidrBlockProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The IPv6 network range for the subnet, in CIDR notation.The ID of the subnet.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpv6CidrBlock
The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length.This parameter is required for an IPv6 only subnet.
-
getSubnetId
The ID of the subnet. -
builder
- Returns:
- a
CfnSubnetCidrBlockProps.Builder
ofCfnSubnetCidrBlockProps
-