Skip to main content

alien_core/import/data/aws/
kv.rs

1use serde::{Deserialize, Serialize};
2
3/// AWS KV ImportData.
4#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
5#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
6#[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))]
7#[serde(rename_all = "camelCase")]
8pub struct AwsKvImportData {
9    /// DynamoDB table name.
10    pub table_name: String,
11    /// DynamoDB table ARN.
12    pub table_arn: String,
13}