aws_sdk_iot/client/
delete_v2_logging_level.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 [`DeleteV2LoggingLevel`](crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`target_type(LogTargetType)`](crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder::target_type) / [`set_target_type(Option<LogTargetType>)`](crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder::set_target_type):<br>required: **true**<br><p>The type of resource for which you are configuring logging. Must be <code>THING_Group</code>.</p><br>
7    ///   - [`target_name(impl Into<String>)`](crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder::target_name) / [`set_target_name(Option<String>)`](crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder::set_target_name):<br>required: **true**<br><p>The name of the resource for which you are configuring logging.</p><br>
8    /// - On success, responds with [`DeleteV2LoggingLevelOutput`](crate::operation::delete_v2_logging_level::DeleteV2LoggingLevelOutput)
9    /// - On failure, responds with [`SdkError<DeleteV2LoggingLevelError>`](crate::operation::delete_v2_logging_level::DeleteV2LoggingLevelError)
10    pub fn delete_v2_logging_level(&self) -> crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder {
11        crate::operation::delete_v2_logging_level::builders::DeleteV2LoggingLevelFluentBuilder::new(self.handle.clone())
12    }
13}