pub struct ListLegacyWafRulesParams {
pub filter_rule_id: Option<String>,
pub filter_severity: Option<String>,
pub filter_tags_name: Option<String>,
pub filter_configuration_set_id: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method list_legacy_waf_rules
Fields§
§filter_rule_id: Option<String>
Limit the returned rules to a specific rule ID.
filter_severity: Option<String>
Limit the returned rules to a specific severity.
Limit the returned rules to a set linked to a tag by name.
filter_configuration_set_id: Option<String>
Optional. Limit rules to specific configuration set or pass "all" to search all configuration sets, including stale ones.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
include: Option<String>
Include relationships. Optional. Comma separated values. Permitted values: tags
, rule_statuses
, and source
.
Trait Implementations§
source§impl Clone for ListLegacyWafRulesParams
impl Clone for ListLegacyWafRulesParams
source§fn clone(&self) -> ListLegacyWafRulesParams
fn clone(&self) -> ListLegacyWafRulesParams
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 ListLegacyWafRulesParams
impl Debug for ListLegacyWafRulesParams
source§impl Default for ListLegacyWafRulesParams
impl Default for ListLegacyWafRulesParams
source§fn default() -> ListLegacyWafRulesParams
fn default() -> ListLegacyWafRulesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListLegacyWafRulesParams
impl Send for ListLegacyWafRulesParams
impl Sync for ListLegacyWafRulesParams
impl Unpin for ListLegacyWafRulesParams
impl UnwindSafe for ListLegacyWafRulesParams
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