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 [`ListRealtimeLogConfigs`](crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_items(i32)`](crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder::set_max_items):<br>required: **false**<br><p>The maximum number of real-time log configurations that you want in the response.</p><br>
    ///   - [`marker(impl Into<String>)`](crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder::set_marker):<br>required: **false**<br><p>Use this field when paginating results to indicate where to begin in your list of real-time log configurations. The response includes real-time log configurations 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>
    /// - On success, responds with [`ListRealtimeLogConfigsOutput`](crate::operation::list_realtime_log_configs::ListRealtimeLogConfigsOutput) with field(s):
    ///   - [`realtime_log_configs(Option<RealtimeLogConfigs>)`](crate::operation::list_realtime_log_configs::ListRealtimeLogConfigsOutput::realtime_log_configs): <p>A list of real-time log configurations.</p>
    /// - On failure, responds with [`SdkError<ListRealtimeLogConfigsError>`](crate::operation::list_realtime_log_configs::ListRealtimeLogConfigsError)
    pub fn list_realtime_log_configs(&self) -> crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder {
        crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder::new(self.handle.clone())
    }
}