Interface CfnFirewall.AvailabilityZoneMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFirewall.AvailabilityZoneMappingProperty.Jsii$Proxy
Enclosing class:
CfnFirewall

@Stability(Stable) public static interface CfnFirewall.AvailabilityZoneMappingProperty extends software.amazon.jsii.JsiiSerializable
Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall.

Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall , AssociateAvailabilityZones , and DisassociateAvailabilityZones .

To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall .

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.*;
 AvailabilityZoneMappingProperty availabilityZoneMappingProperty = AvailabilityZoneMappingProperty.builder()
         .availabilityZone("availabilityZone")
         .build();
 

See Also: