aws_sdk_cloudwatchlogs/client/
describe_field_indexes.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeFieldIndexes`](crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`log_group_identifiers(impl Into<String>)`](crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder::log_group_identifiers) / [`set_log_group_identifiers(Option<Vec::<String>>)`](crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder::set_log_group_identifiers):<br>required: **true**<br><p>An array containing the names or ARNs of the log groups that you want to retrieve field indexes for.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of items to return. The token expires after 24 hours.</p><br>
    /// - On success, responds with [`DescribeFieldIndexesOutput`](crate::operation::describe_field_indexes::DescribeFieldIndexesOutput) with field(s):
    ///   - [`field_indexes(Option<Vec::<FieldIndex>>)`](crate::operation::describe_field_indexes::DescribeFieldIndexesOutput::field_indexes): <p>An array containing the field index information.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_field_indexes::DescribeFieldIndexesOutput::next_token): <p>The token for the next set of items to return. The token expires after 24 hours.</p>
    /// - On failure, responds with [`SdkError<DescribeFieldIndexesError>`](crate::operation::describe_field_indexes::DescribeFieldIndexesError)
    pub fn describe_field_indexes(&self) -> crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder {
        crate::operation::describe_field_indexes::builders::DescribeFieldIndexesFluentBuilder::new(self.handle.clone())
    }
}