pub struct AccountState {
pub web_acls: BTreeMap<ScopedKey, WebAcl>,
pub rule_groups: BTreeMap<ScopedKey, RuleGroup>,
pub ip_sets: BTreeMap<ScopedKey, IpSet>,
pub regex_pattern_sets: BTreeMap<ScopedKey, RegexPatternSet>,
pub api_keys: BTreeMap<String, ApiKey>,
pub logging_configs: BTreeMap<String, Value>,
pub permission_policies: BTreeMap<String, String>,
pub associations: BTreeMap<String, String>,
pub tags: BTreeMap<String, BTreeMap<String, String>>,
}Fields§
§web_acls: BTreeMap<ScopedKey, WebAcl>Keyed by (scope, name).
rule_groups: BTreeMap<ScopedKey, RuleGroup>Keyed by (scope, name).
ip_sets: BTreeMap<ScopedKey, IpSet>Keyed by (scope, name).
regex_pattern_sets: BTreeMap<ScopedKey, RegexPatternSet>Keyed by (scope, name).
api_keys: BTreeMap<String, ApiKey>API key tokens keyed by token string.
logging_configs: BTreeMap<String, Value>LoggingConfiguration keyed by ResourceArn (WebACL ARN).
permission_policies: BTreeMap<String, String>IAM-style permission policies keyed by RuleGroup ARN.
associations: BTreeMap<String, String>WebACL ARN keyed by associated ResourceArn (ALB / APIGW / Cognito UP / etc).
Tags keyed by ARN.
Trait Implementations§
Source§impl Debug for AccountState
impl Debug for AccountState
Source§impl Default for AccountState
impl Default for AccountState
Source§fn default() -> AccountState
fn default() -> AccountState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountState
impl<'de> Deserialize<'de> for AccountState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AccountState
impl RefUnwindSafe for AccountState
impl Send for AccountState
impl Sync for AccountState
impl Unpin for AccountState
impl UnsafeUnpin for AccountState
impl UnwindSafe for AccountState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more