aws-sdk-iot 1.112.0

AWS SDK for AWS IoT
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>The input for the DeleteRegistrationCode operation.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DeleteRegistrationCodeInput {}
impl DeleteRegistrationCodeInput {
    /// Creates a new builder-style object to manufacture [`DeleteRegistrationCodeInput`](crate::operation::delete_registration_code::DeleteRegistrationCodeInput).
    pub fn builder() -> crate::operation::delete_registration_code::builders::DeleteRegistrationCodeInputBuilder {
        crate::operation::delete_registration_code::builders::DeleteRegistrationCodeInputBuilder::default()
    }
}

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