aws_sdk_cloudwatch/client/
enable_alarm_actions.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 [`EnableAlarmActions`](crate::operation::enable_alarm_actions::builders::EnableAlarmActionsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`alarm_names(impl Into<String>)`](crate::operation::enable_alarm_actions::builders::EnableAlarmActionsFluentBuilder::alarm_names) / [`set_alarm_names(Option<Vec::<String>>)`](crate::operation::enable_alarm_actions::builders::EnableAlarmActionsFluentBuilder::set_alarm_names):<br>required: **true**<br><p>The names of the alarms.</p><br>
7    /// - On success, responds with [`EnableAlarmActionsOutput`](crate::operation::enable_alarm_actions::EnableAlarmActionsOutput)
8    /// - On failure, responds with [`SdkError<EnableAlarmActionsError>`](crate::operation::enable_alarm_actions::EnableAlarmActionsError)
9    pub fn enable_alarm_actions(&self) -> crate::operation::enable_alarm_actions::builders::EnableAlarmActionsFluentBuilder {
10        crate::operation::enable_alarm_actions::builders::EnableAlarmActionsFluentBuilder::new(self.handle.clone())
11    }
12}