// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeSpace`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`aws_account_id(impl Into<String>)`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the space.</p><br>
/// - [`space_id(impl Into<String>)`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::space_id) / [`set_space_id(Option<String>)`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::set_space_id):<br>required: **true**<br><p>The ID of the space that you want to describe.</p><br>
/// - [`max_contributors(i32)`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::max_contributors) / [`set_max_contributors(Option<i32>)`](crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::set_max_contributors):<br>required: **false**<br><p>The maximum number of contributors to include in the response.</p><br>
/// - On success, responds with [`DescribeSpaceOutput`](crate::operation::describe_space::DescribeSpaceOutput) with field(s):
/// - [`space_id(String)`](crate::operation::describe_space::DescribeSpaceOutput::space_id): <p>The ID of the space.</p>
/// - [`space_arn(Option<String>)`](crate::operation::describe_space::DescribeSpaceOutput::space_arn): <p>The ARN of the space.</p>
/// - [`space(Option<SpaceDetails>)`](crate::operation::describe_space::DescribeSpaceOutput::space): <p>The details of the space.</p>
/// - [`contributors(Option<Vec::<SpaceContributor>>)`](crate::operation::describe_space::DescribeSpaceOutput::contributors): <p>A list of contributors to the space.</p>
/// - [`request_id(Option<String>)`](crate::operation::describe_space::DescribeSpaceOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
/// - On failure, responds with [`SdkError<DescribeSpaceError>`](crate::operation::describe_space::DescribeSpaceError)
pub fn describe_space(&self) -> crate::operation::describe_space::builders::DescribeSpaceFluentBuilder {
crate::operation::describe_space::builders::DescribeSpaceFluentBuilder::new(self.handle.clone())
}
}