pub struct UpdateWafRuleExclusionParams {
pub firewall_id: String,
pub firewall_version_number: i32,
pub exclusion_number: i32,
pub waf_exclusion: Option<WafExclusion>,
}
Expand description
struct for passing parameters to the method update_waf_rule_exclusion
Fields§
§firewall_id: String
Alphanumeric string identifying a WAF Firewall.
firewall_version_number: i32
Integer identifying a WAF firewall version.
exclusion_number: i32
A numeric ID identifying a WAF exclusion.
waf_exclusion: Option<WafExclusion>
Trait Implementations§
source§impl Clone for UpdateWafRuleExclusionParams
impl Clone for UpdateWafRuleExclusionParams
source§fn clone(&self) -> UpdateWafRuleExclusionParams
fn clone(&self) -> UpdateWafRuleExclusionParams
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 Debug for UpdateWafRuleExclusionParams
impl Debug for UpdateWafRuleExclusionParams
source§impl Default for UpdateWafRuleExclusionParams
impl Default for UpdateWafRuleExclusionParams
source§fn default() -> UpdateWafRuleExclusionParams
fn default() -> UpdateWafRuleExclusionParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for UpdateWafRuleExclusionParams
impl Send for UpdateWafRuleExclusionParams
impl Sync for UpdateWafRuleExclusionParams
impl Unpin for UpdateWafRuleExclusionParams
impl UnwindSafe for UpdateWafRuleExclusionParams
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