pub fn ser_get_flow_logs_integration_template_input_input_input(
input: &crate::operation::get_flow_logs_integration_template::GetFlowLogsIntegrationTemplateInput,
) -> ::std::result::Result<::aws_smithy_types::body::SdkBody, ::aws_smithy_types::error::operation::SerializationError> {
let mut out = String::new();
#[allow(unused_mut)]
let mut writer = ::aws_smithy_query::QueryWriter::new(&mut out, "GetFlowLogsIntegrationTemplate", "2016-11-15");
#[allow(unused_mut)]
let mut scope_1 = writer.prefix("DryRun");
if let Some(var_2) = &input.dry_run {
scope_1.boolean(*var_2);
}
#[allow(unused_mut)]
let mut scope_3 = writer.prefix("FlowLogId");
if let Some(var_4) = &input.flow_log_id {
scope_3.string(var_4);
}
#[allow(unused_mut)]
let mut scope_5 = writer.prefix("ConfigDeliveryS3DestinationArn");
if let Some(var_6) = &input.config_delivery_s3_destination_arn {
scope_5.string(var_6);
}
#[allow(unused_mut)]
let mut scope_7 = writer.prefix("IntegrateService");
if let Some(var_8) = &input.integrate_services {
crate::protocol_serde::shape_integrate_services::ser_integrate_services(scope_7, var_8)?;
}
writer.finish();
Ok(::aws_smithy_types::body::SdkBody::from(out))
}