aws-sdk-cloudwatchlogs 1.124.0

AWS SDK for Amazon CloudWatch Logs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeLookupTables`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`lookup_table_name_prefix(impl Into<String>)`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::lookup_table_name_prefix) / [`set_lookup_table_name_prefix(Option<String>)`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::set_lookup_table_name_prefix):<br>required: **false**<br><p>A prefix to filter lookup tables by name. Only tables whose names start with this prefix are returned. If you don't specify a prefix, all tables in the account and Region are returned.</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of lookup tables to return in the response. The default value is 50 and the maximum value is 100.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of items to return. (You received this token from a previous call.)</p><br>
    /// - On success, responds with [`DescribeLookupTablesOutput`](crate::operation::describe_lookup_tables::DescribeLookupTablesOutput) with field(s):
    ///   - [`lookup_tables(Option<Vec::<LookupTable>>)`](crate::operation::describe_lookup_tables::DescribeLookupTablesOutput::lookup_tables): <p>An array of structures, where each structure contains metadata about one lookup table.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_lookup_tables::DescribeLookupTablesOutput::next_token): <p>The token to use when requesting the next set of items.</p>
    /// - On failure, responds with [`SdkError<DescribeLookupTablesError>`](crate::operation::describe_lookup_tables::DescribeLookupTablesError)
    pub fn describe_lookup_tables(&self) -> crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder {
        crate::operation::describe_lookup_tables::builders::DescribeLookupTablesFluentBuilder::new(self.handle.clone())
    }
}