// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetServerDetails`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`server_id(impl Into<String>)`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::server_id) / [`set_server_id(Option<String>)`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::set_server_id):<br>required: **true**<br><p>The ID of the server.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set <code>maxResults</code> to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.</p><br>
/// - [`max_results(i32)`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of items to include in the response. The maximum value is 100.</p><br>
/// - On success, responds with [`GetServerDetailsOutput`](crate::operation::get_server_details::GetServerDetailsOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::get_server_details::GetServerDetailsOutput::next_token): <p>The token you use to retrieve the next set of results, or null if there are no more results.</p>
/// - [`server_detail(Option<ServerDetail>)`](crate::operation::get_server_details::GetServerDetailsOutput::server_detail): <p>Detailed information about the server.</p>
/// - [`associated_applications(Option<Vec::<AssociatedApplication>>)`](crate::operation::get_server_details::GetServerDetailsOutput::associated_applications): <p>The associated application group the server belongs to, as defined in AWS Application Discovery Service.</p>
/// - On failure, responds with [`SdkError<GetServerDetailsError>`](crate::operation::get_server_details::GetServerDetailsError)
pub fn get_server_details(&self) -> crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder {
crate::operation::get_server_details::builders::GetServerDetailsFluentBuilder::new(self.handle.clone())
}
}