aws_sdk_route53globalresolver/client/delete_dns_view.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 [`DeleteDNSView`](crate::operation::delete_dns_view::builders::DeleteDNSViewFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`dns_view_id(impl Into<String>)`](crate::operation::delete_dns_view::builders::DeleteDNSViewFluentBuilder::dns_view_id) / [`set_dns_view_id(Option<String>)`](crate::operation::delete_dns_view::builders::DeleteDNSViewFluentBuilder::set_dns_view_id):<br>required: **true**<br><p>The unique identifier of the DNS view to delete.</p><br>
7 /// - On success, responds with [`DeleteDnsViewOutput`](crate::operation::delete_dns_view::DeleteDnsViewOutput) with field(s):
8 /// - [`id(String)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::id): <p>The unique identifier of the deleted DNS view.</p>
9 /// - [`arn(String)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::arn): <p>The Amazon Resource Name (ARN) of the deleted DNS view.</p>
10 /// - [`client_token(Option<String>)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::client_token): <p>The unique string that identifies the request and ensures idempotency.</p>
11 /// - [`dnssec_validation(DnsSecValidationType)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::dnssec_validation): <p>Whether DNSSEC validation was enabled for the deleted DNS view.</p>
12 /// - [`edns_client_subnet(EdnsClientSubnetType)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::edns_client_subnet): <p>Whether EDNS Client Subnet injection was enabled for the deleted DNS view.</p>
13 /// - [`firewall_rules_fail_open(FirewallRulesFailOpenType)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::firewall_rules_fail_open): <p>The firewall rules fail-open behavior that was configured for the deleted DNS view.</p>
14 /// - [`name(String)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::name): <p>The name of the deleted DNS view.</p>
15 /// - [`description(Option<String>)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::description): <p>The description of the deleted DNS view.</p>
16 /// - [`global_resolver_id(String)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::global_resolver_id): <p>The ID of the Route 53 Global Resolver that the deleted DNS view was associated with.</p>
17 /// - [`created_at(DateTime)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::created_at): <p>The date and time when the DNS view was originally created.</p>
18 /// - [`updated_at(DateTime)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::updated_at): <p>The date and time when the DNS view was last updated before deletion.</p>
19 /// - [`status(ProfileResourceStatus)`](crate::operation::delete_dns_view::DeleteDnsViewOutput::status): <p>The final status of the deleted DNS view.</p>
20 /// - On failure, responds with [`SdkError<DeleteDNSViewError>`](crate::operation::delete_dns_view::DeleteDNSViewError)
21 pub fn delete_dns_view(&self) -> crate::operation::delete_dns_view::builders::DeleteDNSViewFluentBuilder {
22 crate::operation::delete_dns_view::builders::DeleteDNSViewFluentBuilder::new(self.handle.clone())
23 }
24}