#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct UpdateSecretOutput {
    #[doc(hidden)]
    pub arn: std::option::Option<std::string::String>,
    #[doc(hidden)]
    pub name: std::option::Option<std::string::String>,
    #[doc(hidden)]
    pub version_id: std::option::Option<std::string::String>,
    _request_id: Option<String>,
}
impl UpdateSecretOutput {
    pub fn arn(&self) -> std::option::Option<&str> {
        self.arn.as_deref()
    }
    pub fn name(&self) -> std::option::Option<&str> {
        self.name.as_deref()
    }
    pub fn version_id(&self) -> std::option::Option<&str> {
        self.version_id.as_deref()
    }
}
impl aws_http::request_id::RequestId for UpdateSecretOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl UpdateSecretOutput {
    pub fn builder() -> crate::operation::update_secret::builders::UpdateSecretOutputBuilder {
        crate::operation::update_secret::builders::UpdateSecretOutputBuilder::default()
    }
}
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct UpdateSecretOutputBuilder {
    pub(crate) arn: std::option::Option<std::string::String>,
    pub(crate) name: std::option::Option<std::string::String>,
    pub(crate) version_id: std::option::Option<std::string::String>,
    _request_id: Option<String>,
}
impl UpdateSecretOutputBuilder {
    pub fn arn(mut self, input: impl Into<std::string::String>) -> Self {
        self.arn = Some(input.into());
        self
    }
    pub fn set_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.arn = input;
        self
    }
    pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
        self.name = Some(input.into());
        self
    }
    pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.name = input;
        self
    }
    pub fn version_id(mut self, input: impl Into<std::string::String>) -> Self {
        self.version_id = Some(input.into());
        self
    }
    pub fn set_version_id(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.version_id = input;
        self
    }
    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
    }
    pub fn build(self) -> crate::operation::update_secret::UpdateSecretOutput {
        crate::operation::update_secret::UpdateSecretOutput {
            arn: self.arn,
            name: self.name,
            version_id: self.version_id,
            _request_id: self._request_id,
        }
    }
}