// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeWarmPool`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`auto_scaling_group_name(impl Into<String>)`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::auto_scaling_group_name) / [`set_auto_scaling_group_name(Option<String>)`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::set_auto_scaling_group_name):<br>required: **true**<br><p>The name of the Auto Scaling group.</p><br>
/// - [`max_records(i32)`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of instances to return with this call. The maximum value is <code>50</code>.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of instances to return. (You received this token from a previous call.)</p><br>
/// - On success, responds with [`DescribeWarmPoolOutput`](crate::operation::describe_warm_pool::DescribeWarmPoolOutput) with field(s):
/// - [`warm_pool_configuration(Option<WarmPoolConfiguration>)`](crate::operation::describe_warm_pool::DescribeWarmPoolOutput::warm_pool_configuration): <p>The warm pool configuration details. </p>
/// - [`instances(Option<Vec::<Instance>>)`](crate::operation::describe_warm_pool::DescribeWarmPoolOutput::instances): <p>The instances that are currently in the warm pool.</p>
/// - [`next_token(Option<String>)`](crate::operation::describe_warm_pool::DescribeWarmPoolOutput::next_token): <p>This string 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<DescribeWarmPoolError>`](crate::operation::describe_warm_pool::DescribeWarmPoolError)
pub fn describe_warm_pool(&self) -> crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder {
crate::operation::describe_warm_pool::builders::DescribeWarmPoolFluentBuilder::new(self.handle.clone())
}
}