pub fn ser_component_deployment_specification(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::ComponentDeploymentSpecification,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
object.key("componentVersion").string(input.component_version.as_str());
}
if let Some(var_1) = &input.configuration_update {
#[allow(unused_mut)]
let mut object_2 = object.key("configurationUpdate").start_object();
crate::protocol_serde::shape_component_configuration_update::ser_component_configuration_update(&mut object_2, var_1)?;
object_2.finish();
}
if let Some(var_3) = &input.run_with {
#[allow(unused_mut)]
let mut object_4 = object.key("runWith").start_object();
crate::protocol_serde::shape_component_run_with::ser_component_run_with(&mut object_4, var_3)?;
object_4.finish();
}
Ok(())
}
pub(crate) fn de_component_deployment_specification<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
depth: u32,
) -> ::std::result::Result<Option<crate::types::ComponentDeploymentSpecification>, ::aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
{
if depth >= 128u32 {
return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"maximum nesting depth exceeded",
));
}
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::ComponentDeploymentSpecificationBuilder::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() {
"componentVersion" => {
builder = builder.set_component_version(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"configurationUpdate" => {
builder = builder.set_configuration_update(
crate::protocol_serde::shape_component_configuration_update::de_component_configuration_update(
tokens,
_value,
depth + 1,
)?,
);
}
"runWith" => {
builder = builder.set_run_with(crate::protocol_serde::shape_component_run_with::de_component_run_with(
tokens,
_value,
depth + 1,
)?);
}
_ => ::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::component_deployment_specification_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",
)),
}
}