Struct aws_sdk_networkfirewall::model::FirewallStatus
source · [−]#[non_exhaustive]pub struct FirewallStatus {
pub status: Option<FirewallStatusValue>,
pub configuration_sync_state_summary: Option<ConfigurationSyncState>,
pub sync_states: Option<HashMap<String, SyncState>>,
}
Expand description
Detailed information about the current status of a Firewall
. You can retrieve this for a firewall by calling DescribeFirewall
and providing the firewall name and ARN.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status: Option<FirewallStatusValue>
The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you've configured it. This setting is READY
only when the ConfigurationSyncStateSummary
value is IN_SYNC
and the Attachment
Status
values for all of the configured subnets are READY
.
configuration_sync_state_summary: Option<ConfigurationSyncState>
The configuration sync state for the firewall. This summarizes the sync states reported in the Config
settings for all of the Availability Zones where you have configured the firewall.
When you create a firewall or update its configuration, for example by adding a rule group to its firewall policy, Network Firewall distributes the configuration changes to all zones where the firewall is in use. This summary indicates whether the configuration changes have been applied everywhere.
This status must be IN_SYNC
for the firewall to be ready for use, but it doesn't indicate that the firewall is ready. The Status
setting indicates firewall readiness.
sync_states: Option<HashMap<String, SyncState>>
The subnets that you've configured for use by the Network Firewall firewall. This contains one array element per Availability Zone where you've configured a subnet. These objects provide details of the information that is summarized in the ConfigurationSyncStateSummary
and Status
, broken down by zone and configuration object.
Implementations
The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you've configured it. This setting is READY
only when the ConfigurationSyncStateSummary
value is IN_SYNC
and the Attachment
Status
values for all of the configured subnets are READY
.
The configuration sync state for the firewall. This summarizes the sync states reported in the Config
settings for all of the Availability Zones where you have configured the firewall.
When you create a firewall or update its configuration, for example by adding a rule group to its firewall policy, Network Firewall distributes the configuration changes to all zones where the firewall is in use. This summary indicates whether the configuration changes have been applied everywhere.
This status must be IN_SYNC
for the firewall to be ready for use, but it doesn't indicate that the firewall is ready. The Status
setting indicates firewall readiness.
The subnets that you've configured for use by the Network Firewall firewall. This contains one array element per Availability Zone where you've configured a subnet. These objects provide details of the information that is summarized in the ConfigurationSyncStateSummary
and Status
, broken down by zone and configuration object.
Creates a new builder-style object to manufacture FirewallStatus
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for FirewallStatus
impl Send for FirewallStatus
impl Sync for FirewallStatus
impl Unpin for FirewallStatus
impl UnwindSafe for FirewallStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more