use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))]
#[serde(rename_all = "camelCase")]
pub struct AwsPostgresImportData {
pub cluster_identifier: String,
pub instance_identifier: String,
pub subnet_group_name: String,
pub security_group_id: String,
pub password_secret_arn: String,
pub cluster_endpoint: String,
pub database: String,
pub username: String,
pub engine_version: String,
}