pub fn ser_associate_application_to_entitlement_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::associate_application_to_entitlement::AssociateApplicationToEntitlementInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.stack_name {
encoder.str("StackName").str(var_1.as_str());
}
if let Some(var_2) = &input.entitlement_name {
encoder.str("EntitlementName").str(var_2.as_str());
}
if let Some(var_3) = &input.application_identifier {
encoder.str("ApplicationIdentifier").str(var_3.as_str());
}
encoder.end();
Ok(())
}