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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFirewall.AvailabilityZoneMappingPropertystatic final classAn implementation forCfnFirewall.AvailabilityZoneMappingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ID of the Availability Zone where the firewall endpoint is located.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
The ID of the Availability Zone where the firewall endpoint is located.For example,
us-east-2a. The Availability Zone must be in the same Region as the transit gateway.- See Also:
-
builder
-