aws_sdk_ec2/protocol_serde/
shape_ipam_cidr_authorization_context.rs1#[allow(unused_mut)]
3pub fn ser_ipam_cidr_authorization_context(
4 mut writer: ::aws_smithy_query::QueryValueWriter,
5 input: &crate::types::IpamCidrAuthorizationContext,
6) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
7 #[allow(unused_mut)]
8 let mut scope_1 = writer.prefix("Message");
9 if let Some(var_2) = &input.message {
10 scope_1.string(var_2);
11 }
12 #[allow(unused_mut)]
13 let mut scope_3 = writer.prefix("Signature");
14 if let Some(var_4) = &input.signature {
15 scope_3.string(var_4);
16 }
17 Ok(())
18}