aws_sdk_iotmanagedintegrations/client/update_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 [`UpdateNotificationConfiguration`](crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`event_type(EventType)`](crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder::event_type) / [`set_event_type(Option<EventType>)`](crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder::set_event_type):<br>required: **true**<br><p>The type of event triggering a device notification to the customer-managed destination.</p><br>
7 /// - [`destination_name(impl Into<String>)`](crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder::destination_name) / [`set_destination_name(Option<String>)`](crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder::set_destination_name):<br>required: **true**<br><p>The name of the destination for the notification configuration.</p><br>
8 /// - On success, responds with [`UpdateNotificationConfigurationOutput`](crate::operation::update_notification_configuration::UpdateNotificationConfigurationOutput)
9 /// - On failure, responds with [`SdkError<UpdateNotificationConfigurationError>`](crate::operation::update_notification_configuration::UpdateNotificationConfigurationError)
10 pub fn update_notification_configuration(
11 &self,
12 ) -> crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder {
13 crate::operation::update_notification_configuration::builders::UpdateNotificationConfigurationFluentBuilder::new(self.handle.clone())
14 }
15}