// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeScheduledActions`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`auto_scaling_group_name(impl Into<String>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::auto_scaling_group_name) / [`set_auto_scaling_group_name(Option<String>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::set_auto_scaling_group_name):<br>required: **false**<br><p>The name of the Auto Scaling group.</p><br>
/// - [`scheduled_action_names(impl Into<String>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::scheduled_action_names) / [`set_scheduled_action_names(Option<Vec::<String>>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::set_scheduled_action_names):<br>required: **false**<br><p>The names of one or more scheduled actions. If you omit this property, all scheduled actions are described. If you specify an unknown scheduled action, it is ignored with no error.</p> <p>Array Members: Maximum number of 50 actions.</p><br>
/// - [`start_time(DateTime)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::start_time) / [`set_start_time(Option<DateTime>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::set_start_time):<br>required: **false**<br><p>The earliest scheduled start time to return. If scheduled action names are provided, this property is ignored.</p><br>
/// - [`end_time(DateTime)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::end_time) / [`set_end_time(Option<DateTime>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::set_end_time):<br>required: **false**<br><p>The latest scheduled start time to return. If scheduled action names are provided, this property is ignored.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of items to return. (You received this token from a previous call.)</p><br>
/// - [`max_records(i32)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of items to return with this call. The default value is <code>50</code> and the maximum value is <code>100</code>.</p><br>
/// - On success, responds with [`DescribeScheduledActionsOutput`](crate::operation::describe_scheduled_actions::DescribeScheduledActionsOutput) with field(s):
/// - [`scheduled_update_group_actions(Option<Vec::<ScheduledUpdateGroupAction>>)`](crate::operation::describe_scheduled_actions::DescribeScheduledActionsOutput::scheduled_update_group_actions): <p>The scheduled actions.</p>
/// - [`next_token(Option<String>)`](crate::operation::describe_scheduled_actions::DescribeScheduledActionsOutput::next_token): <p>A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for the <code>NextToken</code> value when requesting the next set of items. This value is null when there are no more items to return.</p>
/// - On failure, responds with [`SdkError<DescribeScheduledActionsError>`](crate::operation::describe_scheduled_actions::DescribeScheduledActionsError)
pub fn describe_scheduled_actions(&self) -> crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder {
crate::operation::describe_scheduled_actions::builders::DescribeScheduledActionsFluentBuilder::new(self.handle.clone())
}
}