1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchPutScheduledUpdateGroupAction`](crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`auto_scaling_group_name(impl Into<String>)`](crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder::auto_scaling_group_name) / [`set_auto_scaling_group_name(Option<String>)`](crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder::set_auto_scaling_group_name):<br>required: **true**<br><p>The name of the Auto Scaling group.</p><br>
    ///   - [`scheduled_update_group_actions(ScheduledUpdateGroupActionRequest)`](crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder::scheduled_update_group_actions) / [`set_scheduled_update_group_actions(Option<Vec::<ScheduledUpdateGroupActionRequest>>)`](crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder::set_scheduled_update_group_actions):<br>required: **true**<br><p>One or more scheduled actions. The maximum number allowed is 50.</p><br>
    /// - On success, responds with [`BatchPutScheduledUpdateGroupActionOutput`](crate::operation::batch_put_scheduled_update_group_action::BatchPutScheduledUpdateGroupActionOutput) with field(s):
    ///   - [`failed_scheduled_update_group_actions(Option<Vec::<FailedScheduledUpdateGroupActionRequest>>)`](crate::operation::batch_put_scheduled_update_group_action::BatchPutScheduledUpdateGroupActionOutput::failed_scheduled_update_group_actions): <p>The names of the scheduled actions that could not be created or updated, including an error message.</p>
    /// - On failure, responds with [`SdkError<BatchPutScheduledUpdateGroupActionError>`](crate::operation::batch_put_scheduled_update_group_action::BatchPutScheduledUpdateGroupActionError)
    pub fn batch_put_scheduled_update_group_action(
        &self,
    ) -> crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder {
        crate::operation::batch_put_scheduled_update_group_action::builders::BatchPutScheduledUpdateGroupActionFluentBuilder::new(self.handle.clone())
    }
}