aws-sdk-connect 1.172.0

AWS SDK for Amazon Connect Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateNotificationContent`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
    ///   - [`notification_id(impl Into<String>)`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::notification_id) / [`set_notification_id(Option<String>)`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::set_notification_id):<br>required: **true**<br><p>The unique identifier for the notification to update.</p><br>
    ///   - [`content(LocaleCode, impl Into<String>)`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::content) / [`set_content(Option<HashMap::<LocaleCode, String>>)`](crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::set_content):<br>required: **true**<br><p>The updated localized content of the notification. A map of locale codes and values. Maximum 500 characters per locale.</p><br>
    /// - On success, responds with [`UpdateNotificationContentOutput`](crate::operation::update_notification_content::UpdateNotificationContentOutput)
    /// - On failure, responds with [`SdkError<UpdateNotificationContentError>`](crate::operation::update_notification_content::UpdateNotificationContentError)
    pub fn update_notification_content(&self) -> crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder {
        crate::operation::update_notification_content::builders::UpdateNotificationContentFluentBuilder::new(self.handle.clone())
    }
}