aws_sdk_iotmanagedintegrations/client/
update_event_log_configuration.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 [`UpdateEventLogConfiguration`](crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder::set_id):<br>required: **true**<br><p>The log configuration id.</p><br>
7    ///   - [`event_log_level(LogLevel)`](crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder::event_log_level) / [`set_event_log_level(Option<LogLevel>)`](crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder::set_event_log_level):<br>required: **true**<br><p>The log level for the event in terms of severity.</p><br>
8    /// - On success, responds with [`UpdateEventLogConfigurationOutput`](crate::operation::update_event_log_configuration::UpdateEventLogConfigurationOutput)
9    /// - On failure, responds with [`SdkError<UpdateEventLogConfigurationError>`](crate::operation::update_event_log_configuration::UpdateEventLogConfigurationError)
10    pub fn update_event_log_configuration(
11        &self,
12    ) -> crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder {
13        crate::operation::update_event_log_configuration::builders::UpdateEventLogConfigurationFluentBuilder::new(self.handle.clone())
14    }
15}