aws-sdk-workspacesinstances 1.35.0

AWS SDK for Amazon Workspaces Instances
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_instance_ipv6_address(
    encoder: &mut ::aws_smithy_cbor::Encoder,
    #[allow(unused)] input: &crate::types::InstanceIpv6Address,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    encoder.begin_map();
    if let Some(var_1) = &input.ipv6_address {
        encoder.str("Ipv6Address").str(var_1.as_str());
    }
    if let Some(var_2) = &input.is_primary_ipv6 {
        encoder.str("IsPrimaryIpv6").boolean(*var_2);
    }
    encoder.end();
    Ok(())
}