aws_sdk_route53globalresolver/client/list_managed_firewall_domain_lists.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 [`ListManagedFirewallDomainLists`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`max_results(i32)`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to retrieve in a single call.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::set_next_token):<br>required: **false**<br><p>A pagination token used for large sets of results that can't be returned in a single response.</p><br>
9 /// - [`managed_firewall_domain_list_type(impl Into<String>)`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::managed_firewall_domain_list_type) / [`set_managed_firewall_domain_list_type(Option<String>)`](crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::set_managed_firewall_domain_list_type):<br>required: **true**<br><p>The category of the Manage DNS list either <code>THREAT</code> or <code>CONTENT</code>.</p><br>
10 /// - On success, responds with [`ListManagedFirewallDomainListsOutput`](crate::operation::list_managed_firewall_domain_lists::ListManagedFirewallDomainListsOutput) with field(s):
11 /// - [`next_token(Option<String>)`](crate::operation::list_managed_firewall_domain_lists::ListManagedFirewallDomainListsOutput::next_token): <p>A pagination token used for large sets of results that can't be returned in a single response. Provide this token in the next call to get the results not returned in this call.</p>
12 /// - [`managed_firewall_domain_lists(Vec::<ManagedFirewallDomainListsItem>)`](crate::operation::list_managed_firewall_domain_lists::ListManagedFirewallDomainListsOutput::managed_firewall_domain_lists): <p>List of the Managed Domain Lists.</p>
13 /// - On failure, responds with [`SdkError<ListManagedFirewallDomainListsError>`](crate::operation::list_managed_firewall_domain_lists::ListManagedFirewallDomainListsError)
14 pub fn list_managed_firewall_domain_lists(
15 &self,
16 ) -> crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder {
17 crate::operation::list_managed_firewall_domain_lists::builders::ListManagedFirewallDomainListsFluentBuilder::new(self.handle.clone())
18 }
19}