1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteNotificationConfiguration`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`auto_scaling_group_name(impl Into<String>)`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::auto_scaling_group_name) / [`set_auto_scaling_group_name(Option<String>)`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::set_auto_scaling_group_name):<br>required: **true**<br><p>The name of the Auto Scaling group.</p><br>
    ///   - [`topic_arn(impl Into<String>)`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::topic_arn) / [`set_topic_arn(Option<String>)`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::set_topic_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Amazon SNS topic.</p><br>
    /// - On success, responds with [`DeleteNotificationConfigurationOutput`](crate::operation::delete_notification_configuration::DeleteNotificationConfigurationOutput)
    /// - On failure, responds with [`SdkError<DeleteNotificationConfigurationError>`](crate::operation::delete_notification_configuration::DeleteNotificationConfigurationError)
    pub fn delete_notification_configuration(
        &self,
    ) -> crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder {
        crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::new(self.handle.clone())
    }
}