1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`PutNotificationChannel`](crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`sns_topic_arn(impl Into<String>)`](crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder::sns_topic_arn) / [`set_sns_topic_arn(Option<String>)`](crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder::set_sns_topic_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the SNS topic that collects notifications from Firewall Manager.</p><br>
    ///   - [`sns_role_name(impl Into<String>)`](crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder::sns_role_name) / [`set_sns_role_name(Option<String>)`](crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder::set_sns_role_name):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the IAM role that allows Amazon SNS to record Firewall Manager activity.</p><br>
    /// - On success, responds with [`PutNotificationChannelOutput`](crate::operation::put_notification_channel::PutNotificationChannelOutput)
    /// - On failure, responds with [`SdkError<PutNotificationChannelError>`](crate::operation::put_notification_channel::PutNotificationChannelError)
    pub fn put_notification_channel(&self) -> crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder {
        crate::operation::put_notification_channel::builders::PutNotificationChannelFluentBuilder::new(self.handle.clone())
    }
}