pub fn ser_list_attach_points_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::list_attach_points::ListAttachPointsInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.environment_id {
encoder.str("environmentId").str(var_1.as_str());
}
if let Some(var_2) = &input.max_results {
encoder.str("maxResults").integer(*var_2);
}
if let Some(var_3) = &input.next_token {
encoder.str("nextToken").str(var_3.as_str());
}
encoder.end();
Ok(())
}