aws_sdk_iotmanagedintegrations/client/get_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 [`GetNotificationConfiguration`](crate::operation::get_notification_configuration::builders::GetNotificationConfigurationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`event_type(EventType)`](crate::operation::get_notification_configuration::builders::GetNotificationConfigurationFluentBuilder::event_type) / [`set_event_type(Option<EventType>)`](crate::operation::get_notification_configuration::builders::GetNotificationConfigurationFluentBuilder::set_event_type):<br>required: **true**<br><p>The type of event triggering a device notification to the customer-managed destination.</p><br>
7 /// - On success, responds with [`GetNotificationConfigurationOutput`](crate::operation::get_notification_configuration::GetNotificationConfigurationOutput) with field(s):
8 /// - [`event_type(Option<EventType>)`](crate::operation::get_notification_configuration::GetNotificationConfigurationOutput::event_type): <p>The type of event triggering a device notification to the customer-managed destination.</p>
9 /// - [`destination_name(Option<String>)`](crate::operation::get_notification_configuration::GetNotificationConfigurationOutput::destination_name): <p>The name of the destination for the notification configuration.</p>
10 /// - [`created_at(Option<DateTime>)`](crate::operation::get_notification_configuration::GetNotificationConfigurationOutput::created_at): <p>The timestamp value of when the notification configuration was created.</p>
11 /// - [`updated_at(Option<DateTime>)`](crate::operation::get_notification_configuration::GetNotificationConfigurationOutput::updated_at): <p>The timestamp value of when the notification configuration was last updated.</p>
12 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_notification_configuration::GetNotificationConfigurationOutput::tags): <p>A set of key/value pairs that are used to manage the notification configuration.</p>
13 /// - On failure, responds with [`SdkError<GetNotificationConfigurationError>`](crate::operation::get_notification_configuration::GetNotificationConfigurationError)
14 pub fn get_notification_configuration(
15 &self,
16 ) -> crate::operation::get_notification_configuration::builders::GetNotificationConfigurationFluentBuilder {
17 crate::operation::get_notification_configuration::builders::GetNotificationConfigurationFluentBuilder::new(self.handle.clone())
18 }
19}