use aws_sdk_dynamodb::types::ScalarAttributeType;
use toasty_core::stmt;
pub trait TypeExt {
fn to_ddb_type(&self) -> ScalarAttributeType;
}
impl TypeExt for stmt::Type {
fn to_ddb_type(&self) -> ScalarAttributeType {
match self {
stmt::Type::Bool => ScalarAttributeType::N,
stmt::Type::String => ScalarAttributeType::S,
stmt::Type::I8 | stmt::Type::I16 | stmt::Type::I32 | stmt::Type::I64 => {
ScalarAttributeType::N
}
stmt::Type::Bytes => ScalarAttributeType::B,
_ => todo!("to_ddb_type; ty={:#?}", self),
}
}
}