Struct aws_sdk_networkfirewall::operation::delete_firewall::builders::DeleteFirewallOutputBuilder
source · #[non_exhaustive]pub struct DeleteFirewallOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteFirewallOutput
.
Implementations§
source§impl DeleteFirewallOutputBuilder
impl DeleteFirewallOutputBuilder
sourcepub fn firewall(self, input: Firewall) -> Self
pub fn firewall(self, input: Firewall) -> Self
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 set_firewall(self, input: Option<Firewall>) -> Self
pub fn set_firewall(self, input: Option<Firewall>) -> Self
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 get_firewall(&self) -> &Option<Firewall>
pub fn get_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, input: FirewallStatus) -> Self
pub fn firewall_status(self, input: FirewallStatus) -> Self
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.
sourcepub fn set_firewall_status(self, input: Option<FirewallStatus>) -> Self
pub fn set_firewall_status(self, input: Option<FirewallStatus>) -> Self
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.
sourcepub fn get_firewall_status(&self) -> &Option<FirewallStatus>
pub fn get_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.
sourcepub fn build(self) -> DeleteFirewallOutput
pub fn build(self) -> DeleteFirewallOutput
Consumes the builder and constructs a DeleteFirewallOutput
.
Trait Implementations§
source§impl Clone for DeleteFirewallOutputBuilder
impl Clone for DeleteFirewallOutputBuilder
source§fn clone(&self) -> DeleteFirewallOutputBuilder
fn clone(&self) -> DeleteFirewallOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteFirewallOutputBuilder
impl Debug for DeleteFirewallOutputBuilder
source§impl Default for DeleteFirewallOutputBuilder
impl Default for DeleteFirewallOutputBuilder
source§fn default() -> DeleteFirewallOutputBuilder
fn default() -> DeleteFirewallOutputBuilder
impl StructuralPartialEq for DeleteFirewallOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteFirewallOutputBuilder
impl RefUnwindSafe for DeleteFirewallOutputBuilder
impl Send for DeleteFirewallOutputBuilder
impl Sync for DeleteFirewallOutputBuilder
impl Unpin for DeleteFirewallOutputBuilder
impl UnwindSafe for DeleteFirewallOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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