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