1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Represents the input of a <code>DescribeLimits</code> operation. Has no content.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct DescribeLimitsInput {}
impl DescribeLimitsInput {
    /// Creates a new builder-style object to manufacture [`DescribeLimitsInput`](crate::operation::describe_limits::DescribeLimitsInput).
    pub fn builder() -> crate::operation::describe_limits::builders::DescribeLimitsInputBuilder {
        crate::operation::describe_limits::builders::DescribeLimitsInputBuilder::default()
    }
}

/// A builder for [`DescribeLimitsInput`](crate::operation::describe_limits::DescribeLimitsInput).
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct DescribeLimitsInputBuilder {}
impl DescribeLimitsInputBuilder {
    /// Consumes the builder and constructs a [`DescribeLimitsInput`](crate::operation::describe_limits::DescribeLimitsInput).
    pub fn build(
        self,
    ) -> Result<
        crate::operation::describe_limits::DescribeLimitsInput,
        aws_smithy_http::operation::error::BuildError,
    > {
        Ok(crate::operation::describe_limits::DescribeLimitsInput {})
    }
}