pub fn ser_describe_workspace_bundles_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::describe_workspace_bundles::DescribeWorkspaceBundlesInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.bundle_ids {
let mut array_2 = object.key("BundleIds").start_array();
for item_3 in var_1 {
{
array_2.value().string(item_3.as_str());
}
}
array_2.finish();
}
if let Some(var_4) = &input.owner {
object.key("Owner").string(var_4.as_str());
}
if let Some(var_5) = &input.next_token {
object.key("NextToken").string(var_5.as_str());
}
Ok(())
}