Class: Aws::NetworkFirewall::Types::AvailabilityZoneMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::AvailabilityZoneMapping
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone ⇒ String
The ID of the Availability Zone where the firewall endpoint is located.
Instance Attribute Details
#availability_zone ⇒ 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.
739 740 741 742 743 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 739 class AvailabilityZoneMapping < Struct.new( :availability_zone) SENSITIVE = [] include Aws::Structure end |