#[non_exhaustive]pub struct AwsNetworkFirewallFirewallDetails { /* private fields */ }
Expand description
Details about an Network Firewall firewall.
Implementations
sourceimpl AwsNetworkFirewallFirewallDetails
impl AwsNetworkFirewallFirewallDetails
sourcepub fn delete_protection(&self) -> bool
pub fn delete_protection(&self) -> bool
Whether the firewall is protected from deletion. If set to true
, then the firewall cannot be deleted.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the firewall.
sourcepub fn firewall_arn(&self) -> Option<&str>
pub fn firewall_arn(&self) -> Option<&str>
The ARN of the firewall.
sourcepub fn firewall_id(&self) -> Option<&str>
pub fn firewall_id(&self) -> Option<&str>
The identifier of the firewall.
sourcepub fn firewall_name(&self) -> Option<&str>
pub fn firewall_name(&self) -> Option<&str>
A descriptive name of the firewall.
sourcepub fn firewall_policy_arn(&self) -> Option<&str>
pub fn firewall_policy_arn(&self) -> Option<&str>
The ARN of the firewall policy.
sourcepub fn firewall_policy_change_protection(&self) -> bool
pub fn firewall_policy_change_protection(&self) -> bool
Whether the firewall is protected from a change to the firewall policy. If set to true
, you cannot associate a different policy with the firewall.
sourcepub fn subnet_change_protection(&self) -> bool
pub fn subnet_change_protection(&self) -> bool
Whether the firewall is protected from a change to the subnet associations. If set to true
, you cannot map different subnets to the firewall.
sourcepub fn subnet_mappings(
&self
) -> Option<&[AwsNetworkFirewallFirewallSubnetMappingsDetails]>
pub fn subnet_mappings(
&self
) -> Option<&[AwsNetworkFirewallFirewallSubnetMappingsDetails]>
The public subnets that Network Firewall uses for the firewall. Each subnet must belong to a different Availability Zone.
sourceimpl AwsNetworkFirewallFirewallDetails
impl AwsNetworkFirewallFirewallDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsNetworkFirewallFirewallDetails
.
Trait Implementations
sourceimpl Clone for AwsNetworkFirewallFirewallDetails
impl Clone for AwsNetworkFirewallFirewallDetails
sourcefn clone(&self) -> AwsNetworkFirewallFirewallDetails
fn clone(&self) -> AwsNetworkFirewallFirewallDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<AwsNetworkFirewallFirewallDetails> for AwsNetworkFirewallFirewallDetails
impl PartialEq<AwsNetworkFirewallFirewallDetails> for AwsNetworkFirewallFirewallDetails
sourcefn eq(&self, other: &AwsNetworkFirewallFirewallDetails) -> bool
fn eq(&self, other: &AwsNetworkFirewallFirewallDetails) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AwsNetworkFirewallFirewallDetails) -> bool
fn ne(&self, other: &AwsNetworkFirewallFirewallDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsNetworkFirewallFirewallDetails
Auto Trait Implementations
impl RefUnwindSafe for AwsNetworkFirewallFirewallDetails
impl Send for AwsNetworkFirewallFirewallDetails
impl Sync for AwsNetworkFirewallFirewallDetails
impl Unpin for AwsNetworkFirewallFirewallDetails
impl UnwindSafe for AwsNetworkFirewallFirewallDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more