aws_sdk_codeguruprofiler/client/remove_notification_channel.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 [`RemoveNotificationChannel`](crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`profiling_group_name(impl Into<String>)`](crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder::profiling_group_name) / [`set_profiling_group_name(Option<String>)`](crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder::set_profiling_group_name):<br>required: **true**<br><p>The name of the profiling group we want to change notification configuration for.</p><br>
7 /// - [`channel_id(impl Into<String>)`](crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder::channel_id) / [`set_channel_id(Option<String>)`](crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder::set_channel_id):<br>required: **true**<br><p>The id of the channel that we want to stop receiving notifications.</p><br>
8 /// - On success, responds with [`RemoveNotificationChannelOutput`](crate::operation::remove_notification_channel::RemoveNotificationChannelOutput) with field(s):
9 /// - [`notification_configuration(Option<NotificationConfiguration>)`](crate::operation::remove_notification_channel::RemoveNotificationChannelOutput::notification_configuration): <p>The new notification configuration for this profiling group.</p>
10 /// - On failure, responds with [`SdkError<RemoveNotificationChannelError>`](crate::operation::remove_notification_channel::RemoveNotificationChannelError)
11 pub fn remove_notification_channel(&self) -> crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder {
12 crate::operation::remove_notification_channel::builders::RemoveNotificationChannelFluentBuilder::new(self.handle.clone())
13 }
14}