aws_sdk_cloudfront/client/
list_realtime_log_configs.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`ListRealtimeLogConfigs`](crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`ListRealtimeLogConfigsOutput`](crate::operation::list_realtime_log_configs::ListRealtimeLogConfigsOutput) with field(s):
9    ///   - [`realtime_log_configs(Option<RealtimeLogConfigs>)`](crate::operation::list_realtime_log_configs::ListRealtimeLogConfigsOutput::realtime_log_configs): <p>A list of real-time log configurations.</p>
10    /// - On failure, responds with [`SdkError<ListRealtimeLogConfigsError>`](crate::operation::list_realtime_log_configs::ListRealtimeLogConfigsError)
11    pub fn list_realtime_log_configs(&self) -> crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder {
12        crate::operation::list_realtime_log_configs::builders::ListRealtimeLogConfigsFluentBuilder::new(self.handle.clone())
13    }
14}