aws_sdk_route53globalresolver/client/list_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 [`ListFirewallDomainLists`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`max_results(i32)`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::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_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::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 /// - [`global_resolver_id(impl Into<String>)`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::global_resolver_id) / [`set_global_resolver_id(Option<String>)`](crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::set_global_resolver_id):<br>required: **false**<br><p>The ID of the Global Resolver that contains the DNS view the domain lists are associated to.</p><br>
10 /// - On success, responds with [`ListFirewallDomainListsOutput`](crate::operation::list_firewall_domain_lists::ListFirewallDomainListsOutput) with field(s):
11 /// - [`next_token(Option<String>)`](crate::operation::list_firewall_domain_lists::ListFirewallDomainListsOutput::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 /// - [`firewall_domain_lists(Vec::<FirewallDomainListsItem>)`](crate::operation::list_firewall_domain_lists::ListFirewallDomainListsOutput::firewall_domain_lists): <p>List of the DNS Firewall domain lists.</p>
13 /// - On failure, responds with [`SdkError<ListFirewallDomainListsError>`](crate::operation::list_firewall_domain_lists::ListFirewallDomainListsError)
14 pub fn list_firewall_domain_lists(&self) -> crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder {
15 crate::operation::list_firewall_domain_lists::builders::ListFirewallDomainListsFluentBuilder::new(self.handle.clone())
16 }
17}