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 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