pub fn ser_entity_detector_configuration(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::EntityDetectorConfiguration,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
let mut array_1 = object.key("EntityTypes").start_array();
for item_2 in &input.entity_types {
{
array_1.value().string(item_2.as_str());
}
}
array_1.finish();
}
if let Some(var_3) = &input.allowed_statistics {
let mut array_4 = object.key("AllowedStatistics").start_array();
for item_5 in var_3 {
{
#[allow(unused_mut)]
let mut object_6 = array_4.value().start_object();
crate::protocol_serde::shape_allowed_statistics::ser_allowed_statistics(&mut object_6, item_5)?;
object_6.finish();
}
}
array_4.finish();
}
Ok(())
}
pub(crate) fn de_entity_detector_configuration<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
) -> ::std::result::Result<Option<crate::types::EntityDetectorConfiguration>, ::aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
{
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::types::builders::EntityDetectorConfigurationBuilder::default();
loop {
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
"EntityTypes" => {
builder = builder.set_entity_types(crate::protocol_serde::shape_entity_type_list::de_entity_type_list(tokens, _value)?);
}
"AllowedStatistics" => {
builder = builder.set_allowed_statistics(crate::protocol_serde::shape_allowed_statistic_list::de_allowed_statistic_list(
tokens, _value,
)?);
}
_ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
},
other => {
return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {other:?}"
)))
}
}
}
Ok(Some(
crate::serde_util::entity_detector_configuration_correct_errors(builder)
.build()
.map_err(|err| ::aws_smithy_json::deserialize::error::DeserializeError::custom_source("Response was invalid", err))?,
))
}
_ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
)),
}
}