aws_sdk_applicationinsights/protocol_serde/
shape_describe_problem_input.rs1pub fn ser_describe_problem_input_input(
3 object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4 input: &crate::operation::describe_problem::DescribeProblemInput,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6 if let Some(var_1) = &input.problem_id {
7 object.key("ProblemId").string(var_1.as_str());
8 }
9 if let Some(var_2) = &input.account_id {
10 object.key("AccountId").string(var_2.as_str());
11 }
12 Ok(())
13}