aws_sdk_iotmanagedintegrations/client/
get_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 [`GetEventLogConfiguration`](crate::operation::get_event_log_configuration::builders::GetEventLogConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::get_event_log_configuration::builders::GetEventLogConfigurationFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_event_log_configuration::builders::GetEventLogConfigurationFluentBuilder::set_id):<br>required: **true**<br><p>The identifier of the event log configuration.</p><br>
7    /// - On success, responds with [`GetEventLogConfigurationOutput`](crate::operation::get_event_log_configuration::GetEventLogConfigurationOutput) with field(s):
8    ///   - [`id(Option<String>)`](crate::operation::get_event_log_configuration::GetEventLogConfigurationOutput::id): <p>The identifier of the event log configuration.</p>
9    ///   - [`resource_type(Option<String>)`](crate::operation::get_event_log_configuration::GetEventLogConfigurationOutput::resource_type): <p>The type of resource for the event log configuration.</p>
10    ///   - [`resource_id(Option<String>)`](crate::operation::get_event_log_configuration::GetEventLogConfigurationOutput::resource_id): <p>The identifier of the resource for the event log configuration.</p>
11    ///   - [`event_log_level(Option<LogLevel>)`](crate::operation::get_event_log_configuration::GetEventLogConfigurationOutput::event_log_level): <p>The logging level for the event log configuration.</p>
12    /// - On failure, responds with [`SdkError<GetEventLogConfigurationError>`](crate::operation::get_event_log_configuration::GetEventLogConfigurationError)
13    pub fn get_event_log_configuration(&self) -> crate::operation::get_event_log_configuration::builders::GetEventLogConfigurationFluentBuilder {
14        crate::operation::get_event_log_configuration::builders::GetEventLogConfigurationFluentBuilder::new(self.handle.clone())
15    }
16}