Skip to main content

availability_zone_change_protections

Creates, updates, deletes, gets or lists an availability_zone_change_protections resource.

Overview

Nameavailability_zone_change_protections
TypeResource
Idaws.network_firewall.availability_zone_change_protections

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
update_availability_zone_change_protectionupdateregion, AvailabilityZoneChangeProtectionModifies the AvailabilityZoneChangeProtection setting for a transit gateway-attached firewall. When enabled, this setting prevents accidental changes to the firewall's Availability Zone configuration. This helps protect against disrupting traffic flow in production environments. When enabled, you must disable this protection before using AssociateAvailabilityZones or DisassociateAvailabilityZones to modify the firewall's Availability Zone configuration.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

UPDATE examples

Modifies the AvailabilityZoneChangeProtection setting for a transit gateway-attached firewall. When enabled, this setting prevents accidental changes to the firewall's Availability Zone configuration. This helps protect against disrupting traffic flow in production environments. When enabled, you must disable this protection before using AssociateAvailabilityZones or DisassociateAvailabilityZones to modify the firewall's Availability Zone configuration.

UPDATE aws.network_firewall.availability_zone_change_protections
SET
UpdateToken = '{{ UpdateToken }}',
FirewallArn = '{{ FirewallArn }}',
FirewallName = '{{ FirewallName }}',
AvailabilityZoneChangeProtection = {{ AvailabilityZoneChangeProtection }}
WHERE
region = '{{ region }}' --required
AND AvailabilityZoneChangeProtection = {{ AvailabilityZoneChangeProtection }} --required
RETURNING
availability_zone_change_protection,
firewall_arn,
firewall_name,
update_token;