aws_sdk_route53globalresolver/client/delete_firewall_domain_list.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteFirewallDomainList`](crate::operation::delete_firewall_domain_list::builders::DeleteFirewallDomainListFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`firewall_domain_list_id(impl Into<String>)`](crate::operation::delete_firewall_domain_list::builders::DeleteFirewallDomainListFluentBuilder::firewall_domain_list_id) / [`set_firewall_domain_list_id(Option<String>)`](crate::operation::delete_firewall_domain_list::builders::DeleteFirewallDomainListFluentBuilder::set_firewall_domain_list_id):<br>required: **true**<br><p>The unique identifier of the firewall domain list to delete.</p><br>
7 /// - On success, responds with [`DeleteFirewallDomainListOutput`](crate::operation::delete_firewall_domain_list::DeleteFirewallDomainListOutput) with field(s):
8 /// - [`arn(String)`](crate::operation::delete_firewall_domain_list::DeleteFirewallDomainListOutput::arn): <p>The Amazon Resource Name (ARN) of the deleted firewall domain list.</p>
9 /// - [`id(String)`](crate::operation::delete_firewall_domain_list::DeleteFirewallDomainListOutput::id): <p>The unique identifier of the deleted firewall domain list.</p>
10 /// - [`name(String)`](crate::operation::delete_firewall_domain_list::DeleteFirewallDomainListOutput::name): <p>The name of the deleted firewall domain list.</p>
11 /// - [`status(CrResourceStatus)`](crate::operation::delete_firewall_domain_list::DeleteFirewallDomainListOutput::status): <p>The final status of the deleted firewall domain list.</p>
12 /// - On failure, responds with [`SdkError<DeleteFirewallDomainListError>`](crate::operation::delete_firewall_domain_list::DeleteFirewallDomainListError)
13 pub fn delete_firewall_domain_list(&self) -> crate::operation::delete_firewall_domain_list::builders::DeleteFirewallDomainListFluentBuilder {
14 crate::operation::delete_firewall_domain_list::builders::DeleteFirewallDomainListFluentBuilder::new(self.handle.clone())
15 }
16}