#[non_exhaustive]pub struct DeleteFirewallOutput {
pub firewall: Option<Firewall>,
pub firewall_status: Option<FirewallStatus>,
/* private fields */
}
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.firewall: Option<Firewall>
The firewall defines the configuration settings for an Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource.
The status of the firewall, for example whether it's ready to filter network traffic, is provided in the corresponding FirewallStatus
. You can retrieve both objects by calling DescribeFirewall
.
firewall_status: Option<FirewallStatus>
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.
Implementations§
source§impl DeleteFirewallOutput
impl DeleteFirewallOutput
sourcepub fn firewall(&self) -> Option<&Firewall>
pub fn firewall(&self) -> Option<&Firewall>
The firewall defines the configuration settings for an Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource.
The status of the firewall, for example whether it's ready to filter network traffic, is provided in the corresponding FirewallStatus
. You can retrieve both objects by calling DescribeFirewall
.
sourcepub fn firewall_status(&self) -> Option<&FirewallStatus>
pub fn firewall_status(&self) -> Option<&FirewallStatus>
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.
source§impl DeleteFirewallOutput
impl DeleteFirewallOutput
sourcepub fn builder() -> DeleteFirewallOutputBuilder
pub fn builder() -> DeleteFirewallOutputBuilder
Creates a new builder-style object to manufacture DeleteFirewallOutput
.
Trait Implementations§
source§impl Clone for DeleteFirewallOutput
impl Clone for DeleteFirewallOutput
source§fn clone(&self) -> DeleteFirewallOutput
fn clone(&self) -> DeleteFirewallOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteFirewallOutput
impl Debug for DeleteFirewallOutput
source§impl PartialEq for DeleteFirewallOutput
impl PartialEq for DeleteFirewallOutput
source§fn eq(&self, other: &DeleteFirewallOutput) -> bool
fn eq(&self, other: &DeleteFirewallOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteFirewallOutput
impl RequestId for DeleteFirewallOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DeleteFirewallOutput
Auto Trait Implementations§
impl Freeze for DeleteFirewallOutput
impl RefUnwindSafe for DeleteFirewallOutput
impl Send for DeleteFirewallOutput
impl Sync for DeleteFirewallOutput
impl Unpin for DeleteFirewallOutput
impl UnwindSafe for DeleteFirewallOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more