aws-sdk-iotwireless 1.99.0

AWS SDK for AWS IoT Wireless
Documentation
// 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 DeleteServiceProfileOutput {
    _request_id: Option<String>,
}
impl ::aws_types::request_id::RequestId for DeleteServiceProfileOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl DeleteServiceProfileOutput {
    /// Creates a new builder-style object to manufacture [`DeleteServiceProfileOutput`](crate::operation::delete_service_profile::DeleteServiceProfileOutput).
    pub fn builder() -> crate::operation::delete_service_profile::builders::DeleteServiceProfileOutputBuilder {
        crate::operation::delete_service_profile::builders::DeleteServiceProfileOutputBuilder::default()
    }
}

/// A builder for [`DeleteServiceProfileOutput`](crate::operation::delete_service_profile::DeleteServiceProfileOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DeleteServiceProfileOutputBuilder {
    _request_id: Option<String>,
}
impl DeleteServiceProfileOutputBuilder {
    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
        self._request_id = Some(request_id.into());
        self
    }

    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
        self._request_id = request_id;
        self
    }
    /// Consumes the builder and constructs a [`DeleteServiceProfileOutput`](crate::operation::delete_service_profile::DeleteServiceProfileOutput).
    pub fn build(self) -> crate::operation::delete_service_profile::DeleteServiceProfileOutput {
        crate::operation::delete_service_profile::DeleteServiceProfileOutput {
            _request_id: self._request_id,
        }
    }
}