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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct VerifySessionInput {}
impl VerifySessionInput {
    /// Creates a new builder-style object to manufacture [`VerifySessionInput`](crate::operation::verify_session::VerifySessionInput).
    pub fn builder() -> crate::operation::verify_session::builders::VerifySessionInputBuilder {
        crate::operation::verify_session::builders::VerifySessionInputBuilder::default()
    }
}

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