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

.NET
Go
Java
Python
TypeScript