aws_sdk_notifications/client/delete_notification_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 [`DeleteNotificationConfiguration`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the <code>NotificationConfiguration</code> to delete.</p><br>
7 /// - On success, responds with [`DeleteNotificationConfigurationOutput`](crate::operation::delete_notification_configuration::DeleteNotificationConfigurationOutput)
8 /// - On failure, responds with [`SdkError<DeleteNotificationConfigurationError>`](crate::operation::delete_notification_configuration::DeleteNotificationConfigurationError)
9 pub fn delete_notification_configuration(
10 &self,
11 ) -> crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder {
12 crate::operation::delete_notification_configuration::builders::DeleteNotificationConfigurationFluentBuilder::new(self.handle.clone())
13 }
14}