pub(crate) fn de_trail<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
) -> ::std::result::Result<Option<crate::types::Trail>, ::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::TrailBuilder::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() {
"Name" => {
builder = builder.set_name(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"S3BucketName" => {
builder = builder.set_s3_bucket_name(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"S3KeyPrefix" => {
builder = builder.set_s3_key_prefix(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"SnsTopicName" => {
builder = builder.set_sns_topic_name(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"SnsTopicARN" => {
builder = builder.set_sns_topic_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"IncludeGlobalServiceEvents" => {
builder =
builder.set_include_global_service_events(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
"IsMultiRegionTrail" => {
builder = builder.set_is_multi_region_trail(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
"HomeRegion" => {
builder = builder.set_home_region(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"TrailARN" => {
builder = builder.set_trail_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"LogFileValidationEnabled" => {
builder =
builder.set_log_file_validation_enabled(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
"CloudWatchLogsLogGroupArn" => {
builder = builder.set_cloud_watch_logs_log_group_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"CloudWatchLogsRoleArn" => {
builder = builder.set_cloud_watch_logs_role_arn(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"KmsKeyId" => {
builder = builder.set_kms_key_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"HasCustomEventSelectors" => {
builder =
builder.set_has_custom_event_selectors(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
"HasInsightSelectors" => {
builder = builder.set_has_insight_selectors(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
"IsOrganizationTrail" => {
builder = builder.set_is_organization_trail(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
}
_ => ::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(builder.build()))
}
_ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
)),
}
}