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 Freeze for UpdateWafRuleExclusionParams
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