aws_sdk_cloudfront/client/list_anycast_ip_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 [`ListAnycastIpLists`](crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`marker(impl Into<String>)`](crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder::set_marker):<br>required: **false**<br><p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p><br>
7 /// - [`max_items(i32)`](crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder::set_max_items):<br>required: **false**<br><p>The maximum number of Anycast static IP lists that you want returned in the response.</p><br>
8 /// - On success, responds with [`ListAnycastIpListsOutput`](crate::operation::list_anycast_ip_lists::ListAnycastIpListsOutput) with field(s):
9 /// - [`anycast_ip_lists(Option<AnycastIpListCollection>)`](crate::operation::list_anycast_ip_lists::ListAnycastIpListsOutput::anycast_ip_lists): <p>Root level tag for the <code>AnycastIpLists</code> parameters.</p>
10 /// - On failure, responds with [`SdkError<ListAnycastIpListsError>`](crate::operation::list_anycast_ip_lists::ListAnycastIpListsError)
11 pub fn list_anycast_ip_lists(&self) -> crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder {
12 crate::operation::list_anycast_ip_lists::builders::ListAnycastIpListsFluentBuilder::new(self.handle.clone())
13 }
14}