use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodAwsPostableAccountConfig {
#[serde(rename = "deploymentRegion", skip_serializing_if = "Option::is_none")]
pub deployment_region: Option<String>,
#[serde(rename = "regions", skip_serializing_if = "Option::is_none")]
pub regions: Option<Vec<String>>,
}
impl O11yPeriodAwsPostableAccountConfig {
pub fn new() -> O11yPeriodAwsPostableAccountConfig {
O11yPeriodAwsPostableAccountConfig {
deployment_region: None,
regions: None,
}
}
}