alien-core 1.10.6

Deploy software into your customers' cloud accounts and keep it fully managed
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

/// AWS Vault ImportData.
#[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 AwsVaultImportData {
    /// AWS account ID that owns the Parameter Store namespace.
    pub account_id: String,
    /// AWS region containing the Parameter Store namespace.
    pub region: String,
    /// Prefix used for SecureString parameters in this vault.
    pub parameter_prefix: String,
}