pub(crate) fn de_s3_access_point_attachment<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
) -> ::std::result::Result<Option<crate::types::S3AccessPointAttachment>, ::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::S3AccessPointAttachmentBuilder::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() {
"Lifecycle" => {
builder = builder.set_lifecycle(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| crate::types::S3AccessPointAttachmentLifecycle::from(u.as_ref())))
.transpose()?,
);
}
"LifecycleTransitionReason" => {
builder = builder.set_lifecycle_transition_reason(
crate::protocol_serde::shape_lifecycle_transition_reason::de_lifecycle_transition_reason(tokens, _value)?,
);
}
"CreationTime" => {
builder = builder.set_creation_time(::aws_smithy_json::deserialize::token::expect_timestamp_or_null(
tokens.next(),
::aws_smithy_types::date_time::Format::EpochSeconds,
)?);
}
"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()?,
);
}
"Type" => {
builder = builder.set_type(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| crate::types::S3AccessPointAttachmentType::from(u.as_ref())))
.transpose()?,
);
}
"OpenZFSConfiguration" => {
builder = builder.set_open_zfs_configuration(
crate::protocol_serde::shape_s3_access_point_open_zfs_configuration::de_s3_access_point_open_zfs_configuration(
tokens, _value,
)?,
);
}
"OntapConfiguration" => {
builder = builder.set_ontap_configuration(
crate::protocol_serde::shape_s3_access_point_ontap_configuration::de_s3_access_point_ontap_configuration(
tokens, _value,
)?,
);
}
"S3AccessPoint" => {
builder = builder.set_s3_access_point(crate::protocol_serde::shape_s3_access_point::de_s3_access_point(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(builder.build()))
}
_ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
)),
}
}