aws_sdk_route53globalresolver/client/get_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 [`GetFirewallDomainList`](crate::operation::get_firewall_domain_list::builders::GetFirewallDomainListFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`firewall_domain_list_id(impl Into<String>)`](crate::operation::get_firewall_domain_list::builders::GetFirewallDomainListFluentBuilder::firewall_domain_list_id) / [`set_firewall_domain_list_id(Option<String>)`](crate::operation::get_firewall_domain_list::builders::GetFirewallDomainListFluentBuilder::set_firewall_domain_list_id):<br>required: **true**<br><p>ID of the domain list.</p><br>
7 /// - On success, responds with [`GetFirewallDomainListOutput`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput) with field(s):
8 /// - [`arn(String)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::arn): <p>Amazon Resource Name (ARN) of the domain list.</p>
9 /// - [`global_resolver_id(String)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::global_resolver_id): <p>ID of the Global Resolver that the domain list is associated to.</p>
10 /// - [`client_token(Option<String>)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::client_token): <p>A unique, case-sensitive identifier to ensure idempotency. This means that making the same request multiple times with the same <code>clientToken</code> has the same result every time.</p>
11 /// - [`created_at(DateTime)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::created_at): <p>The time and date the domain list was created.</p>
12 /// - [`description(Option<String>)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::description): <p>The description of the domain list.</p>
13 /// - [`domain_count(i32)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::domain_count): <p>Number of domains in the domain list.</p>
14 /// - [`id(String)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::id): <p>ID of the domain list.</p>
15 /// - [`name(String)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::name): <p>Name of the domain list.</p>
16 /// - [`status(CrResourceStatus)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::status): <p>Operational status of the domain list.</p>
17 /// - [`status_message(Option<String>)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::status_message): <p>Additional information about the status of the domain list.</p>
18 /// - [`updated_at(DateTime)`](crate::operation::get_firewall_domain_list::GetFirewallDomainListOutput::updated_at): <p>The date and time the domain list was updated.</p>
19 /// - On failure, responds with [`SdkError<GetFirewallDomainListError>`](crate::operation::get_firewall_domain_list::GetFirewallDomainListError)
20 pub fn get_firewall_domain_list(&self) -> crate::operation::get_firewall_domain_list::builders::GetFirewallDomainListFluentBuilder {
21 crate::operation::get_firewall_domain_list::builders::GetFirewallDomainListFluentBuilder::new(self.handle.clone())
22 }
23}