Struct aws_sdk_networkfirewall::operation::delete_firewall::builders::DeleteFirewallFluentBuilder
source · pub struct DeleteFirewallFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteFirewall
.
Deletes the specified Firewall
and its FirewallStatus
. This operation requires the firewall's DeleteProtection
flag to be FALSE
. You can't revert this operation.
You can check whether a firewall is in use by reviewing the route tables for the Availability Zones where you have firewall subnet mappings. Retrieve the subnet mappings by calling DescribeFirewall
. You define and update the route tables through Amazon VPC. As needed, update the route tables for the zones to remove the firewall endpoints. When the route tables no longer use the firewall endpoints, you can remove the firewall safely.
To delete a firewall, remove the delete protection if you need to using UpdateFirewallDeleteProtection
, then delete the firewall by calling DeleteFirewall
.
Implementations§
source§impl DeleteFirewallFluentBuilder
impl DeleteFirewallFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteFirewall, AwsResponseRetryClassifier>, SdkError<DeleteFirewallError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeleteFirewall, AwsResponseRetryClassifier>, SdkError<DeleteFirewallError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DeleteFirewallOutput, SdkError<DeleteFirewallError>>
pub async fn send( self ) -> Result<DeleteFirewallOutput, SdkError<DeleteFirewallError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn firewall_name(self, input: impl Into<String>) -> Self
pub fn firewall_name(self, input: impl Into<String>) -> Self
The descriptive name of the firewall. You can't change the name of a firewall after you create it.
You must specify the ARN or the name, and you can specify both.
sourcepub fn set_firewall_name(self, input: Option<String>) -> Self
pub fn set_firewall_name(self, input: Option<String>) -> Self
The descriptive name of the firewall. You can't change the name of a firewall after you create it.
You must specify the ARN or the name, and you can specify both.
sourcepub fn firewall_arn(self, input: impl Into<String>) -> Self
pub fn firewall_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the firewall.
You must specify the ARN or the name, and you can specify both.
sourcepub fn set_firewall_arn(self, input: Option<String>) -> Self
pub fn set_firewall_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the firewall.
You must specify the ARN or the name, and you can specify both.
Trait Implementations§
source§impl Clone for DeleteFirewallFluentBuilder
impl Clone for DeleteFirewallFluentBuilder
source§fn clone(&self) -> DeleteFirewallFluentBuilder
fn clone(&self) -> DeleteFirewallFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more