pub(crate) fn de_snapshot_configuration<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
) -> ::std::result::Result<Option<crate::types::SnapshotConfiguration>, ::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::SnapshotConfigurationBuilder::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() {
"FileGroups" => {
builder = builder.set_file_groups(crate::protocol_serde::shape_snapshot_file_group_list::de_snapshot_file_group_list(
tokens, _value,
)?);
}
"DestinationConfiguration" => {
builder = builder.set_destination_configuration(
crate::protocol_serde::shape_snapshot_destination_configuration::de_snapshot_destination_configuration(
tokens, _value,
)?,
);
}
"Parameters" => {
builder = builder.set_parameters(crate::protocol_serde::shape_parameters::de_parameters(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::snapshot_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",
)),
}
}
pub fn ser_snapshot_configuration(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::SnapshotConfiguration,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
let mut array_1 = object.key("FileGroups").start_array();
for item_2 in &input.file_groups {
{
#[allow(unused_mut)]
let mut object_3 = array_1.value().start_object();
crate::protocol_serde::shape_snapshot_file_group::ser_snapshot_file_group(&mut object_3, item_2)?;
object_3.finish();
}
}
array_1.finish();
}
if let Some(var_4) = &input.destination_configuration {
#[allow(unused_mut)]
let mut object_5 = object.key("DestinationConfiguration").start_object();
crate::protocol_serde::shape_snapshot_destination_configuration::ser_snapshot_destination_configuration(&mut object_5, var_4)?;
object_5.finish();
}
if let Some(var_6) = &input.parameters {
#[allow(unused_mut)]
let mut object_7 = object.key("Parameters").start_object();
crate::protocol_serde::shape_parameters::ser_parameters(&mut object_7, var_6)?;
object_7.finish();
}
Ok(())
}