Interface CfnFirewall.SubnetMappingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFirewall.SubnetMappingProperty.Jsii$Proxy
- Enclosing class:
CfnFirewall
@Stability(Stable)
public static interface CfnFirewall.SubnetMappingProperty
extends software.amazon.jsii.JsiiSerializable
The ID for a subnet that you want to associate with the firewall.
AWS Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone.
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.networkfirewall.*; SubnetMappingProperty subnetMappingProperty = SubnetMappingProperty.builder() .subnetId("subnetId") // the properties below are optional .ipAddressType("ipAddressType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFirewall.SubnetMappingProperty
static final class
An implementation forCfnFirewall.SubnetMappingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnetId
The unique identifier for the subnet.- See Also:
-
getIpAddressType
The subnet's IP address type.You can't change the IP address type after you create the subnet.
- See Also:
-
builder
-