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: