1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeTrustStores`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`trust_store_arns(impl Into<String>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::trust_store_arns) / [`set_trust_store_arns(Option<Vec::<String>>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::set_trust_store_arns):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the trust store.</p><br>
    ///   - [`names(impl Into<String>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::names) / [`set_names(Option<Vec::<String>>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::set_names):<br>required: **false**<br><p>The names of the trust stores.</p><br>
    ///   - [`marker(impl Into<String>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::set_marker):<br>required: **false**<br><p>The marker for the next set of results. (You received this marker from a previous call.)</p><br>
    ///   - [`page_size(i32)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::set_page_size):<br>required: **false**<br><p>The maximum number of results to return with this call.</p><br>
    /// - On success, responds with [`DescribeTrustStoresOutput`](crate::operation::describe_trust_stores::DescribeTrustStoresOutput) with field(s):
    ///   - [`trust_stores(Option<Vec::<TrustStore>>)`](crate::operation::describe_trust_stores::DescribeTrustStoresOutput::trust_stores): <p>Information about the trust stores.</p>
    ///   - [`next_marker(Option<String>)`](crate::operation::describe_trust_stores::DescribeTrustStoresOutput::next_marker): <p>If there are additional results, this is the marker for the next set of results. Otherwise, this is null.</p>
    /// - On failure, responds with [`SdkError<DescribeTrustStoresError>`](crate::operation::describe_trust_stores::DescribeTrustStoresError)
    pub fn describe_trust_stores(&self) -> crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder {
        crate::operation::describe_trust_stores::builders::DescribeTrustStoresFluentBuilder::new(self.handle.clone())
    }
}