interface AvailabilityZoneMappingProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.NetworkFirewall.CfnFirewall.AvailabilityZoneMappingProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkfirewall#CfnFirewall_AvailabilityZoneMappingProperty | 
|  Java | software.amazon.awscdk.services.networkfirewall.CfnFirewall.AvailabilityZoneMappingProperty | 
|  Python | aws_cdk.aws_networkfirewall.CfnFirewall.AvailabilityZoneMappingProperty | 
|  TypeScript | aws-cdk-lib»aws_networkfirewall»CfnFirewall»AvailabilityZoneMappingProperty | 
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 { aws_networkfirewall as networkfirewall } from 'aws-cdk-lib';
const availabilityZoneMappingProperty: networkfirewall.CfnFirewall.AvailabilityZoneMappingProperty = {
  availabilityZone: 'availabilityZone',
};
Properties
| Name | Type | Description | 
|---|---|---|
| availability | string | The ID of the Availability Zone where the firewall endpoint is located. | 
availabilityZone
Type:
string
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.
