#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetCognitoEventsOutput {
    pub events: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    _request_id: Option<String>,
}
impl GetCognitoEventsOutput {
    pub fn events(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        self.events.as_ref()
    }
}
impl ::aws_http::request_id::RequestId for GetCognitoEventsOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl GetCognitoEventsOutput {
    pub fn builder() -> crate::operation::get_cognito_events::builders::GetCognitoEventsOutputBuilder {
        crate::operation::get_cognito_events::builders::GetCognitoEventsOutputBuilder::default()
    }
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct GetCognitoEventsOutputBuilder {
    pub(crate) events: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    _request_id: Option<String>,
}
impl GetCognitoEventsOutputBuilder {
    pub fn events(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
        let mut hash_map = self.events.unwrap_or_default();
        hash_map.insert(k.into(), v.into());
        self.events = ::std::option::Option::Some(hash_map);
        self
    }
    pub fn set_events(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
        self.events = input;
        self
    }
    pub fn get_events(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        &self.events
    }
    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_cognito_events::GetCognitoEventsOutput {
        crate::operation::get_cognito_events::GetCognitoEventsOutput {
            events: self.events,
            _request_id: self._request_id,
        }
    }
}