aws_sdk_cloudfront/client/
list_trust_stores.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 [`ListTrustStores`](crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`marker(impl Into<String>)`](crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder::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>
8    ///   - [`max_items(i32)`](crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder::set_max_items):<br>required: **false**<br><p>The maximum number of trust stores that you want returned in the response.</p><br>
9    /// - On success, responds with [`ListTrustStoresOutput`](crate::operation::list_trust_stores::ListTrustStoresOutput) with field(s):
10    ///   - [`next_marker(Option<String>)`](crate::operation::list_trust_stores::ListTrustStoresOutput::next_marker): <p>Indicates the next page of trust stores. To get the next page of the list, use this value in the <code>Marker</code> field of your request.</p>
11    ///   - [`trust_store_list(Option<Vec::<TrustStoreSummary>>)`](crate::operation::list_trust_stores::ListTrustStoresOutput::trust_store_list): <p>The trust store list.</p>
12    /// - On failure, responds with [`SdkError<ListTrustStoresError>`](crate::operation::list_trust_stores::ListTrustStoresError)
13    pub fn list_trust_stores(&self) -> crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder {
14        crate::operation::list_trust_stores::builders::ListTrustStoresFluentBuilder::new(self.handle.clone())
15    }
16}