pub struct DnsRuleGroupLimitExceededViolation {
pub number_of_rule_groups_already_associated: Option<i64>,
pub violation_target: Option<String>,
pub violation_target_description: Option<String>,
}
Expand description
The VPC that Firewall Manager was applying a DNS Fireall policy to reached the limit for associated DNS Firewall rule groups. Firewall Manager tried to associate another rule group with the VPC and failed due to the limit.
Fields§
§number_of_rule_groups_already_associated: Option<i64>
The number of rule groups currently associated with the VPC.
violation_target: Option<String>
The ID of the VPC.
violation_target_description: Option<String>
A description of the violation that specifies the rule group and VPC.
Trait Implementations§
Source§impl Clone for DnsRuleGroupLimitExceededViolation
impl Clone for DnsRuleGroupLimitExceededViolation
Source§fn clone(&self) -> DnsRuleGroupLimitExceededViolation
fn clone(&self) -> DnsRuleGroupLimitExceededViolation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DnsRuleGroupLimitExceededViolation
impl Default for DnsRuleGroupLimitExceededViolation
Source§fn default() -> DnsRuleGroupLimitExceededViolation
fn default() -> DnsRuleGroupLimitExceededViolation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DnsRuleGroupLimitExceededViolation
impl<'de> Deserialize<'de> for DnsRuleGroupLimitExceededViolation
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
Source§impl PartialEq for DnsRuleGroupLimitExceededViolation
impl PartialEq for DnsRuleGroupLimitExceededViolation
Source§fn eq(&self, other: &DnsRuleGroupLimitExceededViolation) -> bool
fn eq(&self, other: &DnsRuleGroupLimitExceededViolation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DnsRuleGroupLimitExceededViolation
Auto Trait Implementations§
impl Freeze for DnsRuleGroupLimitExceededViolation
impl RefUnwindSafe for DnsRuleGroupLimitExceededViolation
impl Send for DnsRuleGroupLimitExceededViolation
impl Sync for DnsRuleGroupLimitExceededViolation
impl Unpin for DnsRuleGroupLimitExceededViolation
impl UnwindSafe for DnsRuleGroupLimitExceededViolation
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