aws_sdk_ses/client/
delete_configuration_set_tracking_options.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 [`DeleteConfigurationSetTrackingOptions`](crate::operation::delete_configuration_set_tracking_options::builders::DeleteConfigurationSetTrackingOptionsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_set_name(impl Into<String>)`](crate::operation::delete_configuration_set_tracking_options::builders::DeleteConfigurationSetTrackingOptionsFluentBuilder::configuration_set_name) / [`set_configuration_set_name(Option<String>)`](crate::operation::delete_configuration_set_tracking_options::builders::DeleteConfigurationSetTrackingOptionsFluentBuilder::set_configuration_set_name):<br>required: **true**<br><p>The name of the configuration set.</p><br>
7    /// - On success, responds with [`DeleteConfigurationSetTrackingOptionsOutput`](crate::operation::delete_configuration_set_tracking_options::DeleteConfigurationSetTrackingOptionsOutput)
8    /// - On failure, responds with [`SdkError<DeleteConfigurationSetTrackingOptionsError>`](crate::operation::delete_configuration_set_tracking_options::DeleteConfigurationSetTrackingOptionsError)
9    pub fn delete_configuration_set_tracking_options(
10        &self,
11    ) -> crate::operation::delete_configuration_set_tracking_options::builders::DeleteConfigurationSetTrackingOptionsFluentBuilder {
12        crate::operation::delete_configuration_set_tracking_options::builders::DeleteConfigurationSetTrackingOptionsFluentBuilder::new(
13            self.handle.clone(),
14        )
15    }
16}