aws-sdk-gamelift 1.119.0

AWS SDK for Amazon GameLift
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_delete_container_group_definition_input_input(
    encoder: &mut ::aws_smithy_cbor::Encoder,
    #[allow(unused)] input: &crate::operation::delete_container_group_definition::DeleteContainerGroupDefinitionInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    encoder.begin_map();
    if let Some(var_1) = &input.name {
        encoder.str("Name").str(var_1.as_str());
    }
    if let Some(var_2) = &input.version_number {
        encoder.str("VersionNumber").integer(*var_2);
    }
    if let Some(var_3) = &input.version_count_to_retain {
        encoder.str("VersionCountToRetain").integer(*var_3);
    }
    encoder.end();
    Ok(())
}