#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct GetImageOutput {
    #[doc(hidden)]
    pub request_id: std::option::Option<std::string::String>,
    #[doc(hidden)]
    pub image: std::option::Option<crate::types::Image>,
    _request_id: Option<String>,
}
impl GetImageOutput {
    pub fn request_id(&self) -> std::option::Option<&str> {
        self.request_id.as_deref()
    }
    pub fn image(&self) -> std::option::Option<&crate::types::Image> {
        self.image.as_ref()
    }
}
impl aws_http::request_id::RequestId for GetImageOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl GetImageOutput {
    pub fn builder() -> crate::operation::get_image::builders::GetImageOutputBuilder {
        crate::operation::get_image::builders::GetImageOutputBuilder::default()
    }
}
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct GetImageOutputBuilder {
    pub(crate) request_id: std::option::Option<std::string::String>,
    pub(crate) image: std::option::Option<crate::types::Image>,
    _request_id: Option<String>,
}
impl GetImageOutputBuilder {
    pub fn request_id(mut self, input: impl Into<std::string::String>) -> Self {
        self.request_id = Some(input.into());
        self
    }
    pub fn set_request_id(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.request_id = input;
        self
    }
    pub fn image(mut self, input: crate::types::Image) -> Self {
        self.image = Some(input);
        self
    }
    pub fn set_image(mut self, input: std::option::Option<crate::types::Image>) -> Self {
        self.image = 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::get_image::GetImageOutput {
        crate::operation::get_image::GetImageOutput {
            request_id: self.request_id,
            image: self.image,
            _request_id: self._request_id,
        }
    }
}