pub struct ListWafFirewallRuleStatusesParams {
pub service_id: String,
pub firewall_id: String,
pub filter_status: Option<String>,
pub filter_rule_message: Option<String>,
pub filter_rule_rule_id: Option<String>,
pub filter_rule_tags: Option<String>,
pub filter_rule_tags_name: Option<String>,
pub include: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}Expand description
struct for passing parameters to the method list_waf_firewall_rule_statuses
Fields§
§service_id: StringAlphanumeric string identifying the service.
firewall_id: StringAlphanumeric string identifying a Firewall.
filter_status: Option<String>Limit results to rule statuses with the specified status.
filter_rule_message: Option<String>Limit results to rule statuses whose rules have the specified message.
filter_rule_rule_id: Option<String>Limit results to rule statuses whose rules represent the specified ModSecurity rule_id.
Limit results to rule statuses whose rules relate to the specified tag IDs.
Limit results to rule statuses whose rules related to the named tags.
include: Option<String>Include relationships. Optional, comma separated values. Permitted values: tags.
page_number: Option<i32>Current page.
page_size: Option<i32>Number of records per page.
Trait Implementations§
source§impl Clone for ListWafFirewallRuleStatusesParams
impl Clone for ListWafFirewallRuleStatusesParams
source§fn clone(&self) -> ListWafFirewallRuleStatusesParams
fn clone(&self) -> ListWafFirewallRuleStatusesParams
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 Default for ListWafFirewallRuleStatusesParams
impl Default for ListWafFirewallRuleStatusesParams
source§fn default() -> ListWafFirewallRuleStatusesParams
fn default() -> ListWafFirewallRuleStatusesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListWafFirewallRuleStatusesParams
impl Send for ListWafFirewallRuleStatusesParams
impl Sync for ListWafFirewallRuleStatusesParams
impl Unpin for ListWafFirewallRuleStatusesParams
impl UnwindSafe for ListWafFirewallRuleStatusesParams
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