aws-sdk-notifications 1.46.0

AWS SDK for AWS User Notifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateManagedNotificationAdditionalChannel`](crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`channel_arn(impl Into<String>)`](crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder::channel_arn) / [`set_channel_arn(Option<String>)`](crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder::set_channel_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Channel to associate with the <code>ManagedNotificationConfiguration</code>.</p> <p>Supported ARNs include Amazon Q Developer in chat applications, the Console Mobile Application, and email (notifications-contacts).</p><br>
    ///   - [`managed_notification_configuration_arn(impl Into<String>)`](crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder::managed_notification_configuration_arn) / [`set_managed_notification_configuration_arn(Option<String>)`](crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder::set_managed_notification_configuration_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the <code>ManagedNotificationConfiguration</code> to associate with the additional Channel.</p><br>
    /// - On success, responds with [`AssociateManagedNotificationAdditionalChannelOutput`](crate::operation::associate_managed_notification_additional_channel::AssociateManagedNotificationAdditionalChannelOutput)
    /// - On failure, responds with [`SdkError<AssociateManagedNotificationAdditionalChannelError>`](crate::operation::associate_managed_notification_additional_channel::AssociateManagedNotificationAdditionalChannelError)
    pub fn associate_managed_notification_additional_channel(
        &self,
    ) -> crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder
    {
        crate::operation::associate_managed_notification_additional_channel::builders::AssociateManagedNotificationAdditionalChannelFluentBuilder::new(
            self.handle.clone(),
        )
    }
}