aws_sdk_route53globalresolver/client/
get_managed_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 [`GetManagedFirewallDomainList`](crate::operation::get_managed_firewall_domain_list::builders::GetManagedFirewallDomainListFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`managed_firewall_domain_list_id(impl Into<String>)`](crate::operation::get_managed_firewall_domain_list::builders::GetManagedFirewallDomainListFluentBuilder::managed_firewall_domain_list_id) / [`set_managed_firewall_domain_list_id(Option<String>)`](crate::operation::get_managed_firewall_domain_list::builders::GetManagedFirewallDomainListFluentBuilder::set_managed_firewall_domain_list_id):<br>required: **true**<br><p>ID of the Managed Domain List.</p><br>
7    /// - On success, responds with [`GetManagedFirewallDomainListOutput`](crate::operation::get_managed_firewall_domain_list::GetManagedFirewallDomainListOutput) with field(s):
8    ///   - [`description(Option<String>)`](crate::operation::get_managed_firewall_domain_list::GetManagedFirewallDomainListOutput::description): <p>Description of the Managed Domain List.</p>
9    ///   - [`id(String)`](crate::operation::get_managed_firewall_domain_list::GetManagedFirewallDomainListOutput::id): <p>ID of the Managed Domain List.</p>
10    ///   - [`name(String)`](crate::operation::get_managed_firewall_domain_list::GetManagedFirewallDomainListOutput::name): <p>Name of the Managed Domain List.</p>
11    ///   - [`managed_list_type(String)`](crate::operation::get_managed_firewall_domain_list::GetManagedFirewallDomainListOutput::managed_list_type): <p>Type of the managed category. This is either <code>THREAT</code> or <code>CONTENT</code>.</p>
12    /// - On failure, responds with [`SdkError<GetManagedFirewallDomainListError>`](crate::operation::get_managed_firewall_domain_list::GetManagedFirewallDomainListError)
13    pub fn get_managed_firewall_domain_list(
14        &self,
15    ) -> crate::operation::get_managed_firewall_domain_list::builders::GetManagedFirewallDomainListFluentBuilder {
16        crate::operation::get_managed_firewall_domain_list::builders::GetManagedFirewallDomainListFluentBuilder::new(self.handle.clone())
17    }
18}