aws-sdk-appstream 1.121.0

AWS SDK for Amazon AppStream
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_application_settings(
    encoder: &mut ::aws_smithy_cbor::Encoder,
    #[allow(unused)] input: &crate::types::ApplicationSettings,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    encoder.begin_map();
    if let Some(var_1) = &input.enabled {
        encoder.str("Enabled").boolean(*var_1);
    }
    if let Some(var_2) = &input.settings_group {
        encoder.str("SettingsGroup").str(var_2.as_str());
    }
    encoder.end();
    Ok(())
}