1 2 3 4 5 6 7 8 9 10 11
use serde::{Deserialize, Serialize}; /// Represents the effect of an IAM statement /// /// <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_effect.html> #[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)] #[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))] pub enum IAMEffect { Allow, Deny, }