1 2 3 4 5 6 7
use serde::{Deserialize, Serialize}; use sqlx::FromRow; #[derive(Deserialize, Serialize, Debug, FromRow, Clone, PartialEq)] pub struct SnsDestination { pub topic_arn: String, }