aws_sdk_dynamodb/protocol_serde/shape_delete_global_secondary_index_action.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_delete_global_secondary_index_action(
3 object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4 input: &crate::types::DeleteGlobalSecondaryIndexAction,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6 {
7 object.key("IndexName").string(input.index_name.as_str());
8 }
9 Ok(())
10}