aws_sdk_xray/client/
get_indexing_rules.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetIndexingRules`](crate::operation::get_indexing_rules::builders::GetIndexingRulesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_indexing_rules::builders::GetIndexingRulesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_indexing_rules::builders::GetIndexingRulesFluentBuilder::set_next_token):<br>required: **false**<br><p>Specify the pagination token returned by a previous request to retrieve the next page of indexes.</p><br>
    /// - On success, responds with [`GetIndexingRulesOutput`](crate::operation::get_indexing_rules::GetIndexingRulesOutput) with field(s):
    ///   - [`indexing_rules(Option<Vec::<IndexingRule>>)`](crate::operation::get_indexing_rules::GetIndexingRulesOutput::indexing_rules): <p>Retrieves all indexing rules.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::get_indexing_rules::GetIndexingRulesOutput::next_token): <p>Specify the pagination token returned by a previous request to retrieve the next page of indexes.</p>
    /// - On failure, responds with [`SdkError<GetIndexingRulesError>`](crate::operation::get_indexing_rules::GetIndexingRulesError)
    pub fn get_indexing_rules(&self) -> crate::operation::get_indexing_rules::builders::GetIndexingRulesFluentBuilder {
        crate::operation::get_indexing_rules::builders::GetIndexingRulesFluentBuilder::new(self.handle.clone())
    }
}