pub struct GetWafRuleParams {
pub waf_rule_id: String,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method get_waf_rule
Fields§
§waf_rule_id: String
Alphanumeric string identifying a WAF rule.
include: Option<String>
Include relationships. Optional, comma-separated values. Permitted values: waf_tags
and waf_rule_revisions
.
Trait Implementations§
Source§impl Clone for GetWafRuleParams
impl Clone for GetWafRuleParams
Source§fn clone(&self) -> GetWafRuleParams
fn clone(&self) -> GetWafRuleParams
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 GetWafRuleParams
impl Debug for GetWafRuleParams
Source§impl Default for GetWafRuleParams
impl Default for GetWafRuleParams
Source§fn default() -> GetWafRuleParams
fn default() -> GetWafRuleParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetWafRuleParams
impl RefUnwindSafe for GetWafRuleParams
impl Send for GetWafRuleParams
impl Sync for GetWafRuleParams
impl Unpin for GetWafRuleParams
impl UnwindSafe for GetWafRuleParams
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