pub struct GetLegacyWafRuleParams {
pub waf_rule_id: String,
pub filter_configuration_set_id: Option<String>,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method get_legacy_waf_rule
Fields§
§waf_rule_id: String
Alphanumeric string identifying a WAF rule.
filter_configuration_set_id: Option<String>
Optional. Limit rule to a specific configuration set or pass "all" to search all configuration sets, including stale ones.
include: Option<String>
Include relationships. Optional. Comma separated values. Permitted values: tags
, rule_statuses
, source
, and vcl
.
Trait Implementations§
source§impl Clone for GetLegacyWafRuleParams
impl Clone for GetLegacyWafRuleParams
source§fn clone(&self) -> GetLegacyWafRuleParams
fn clone(&self) -> GetLegacyWafRuleParams
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 GetLegacyWafRuleParams
impl Debug for GetLegacyWafRuleParams
source§impl Default for GetLegacyWafRuleParams
impl Default for GetLegacyWafRuleParams
source§fn default() -> GetLegacyWafRuleParams
fn default() -> GetLegacyWafRuleParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GetLegacyWafRuleParams
impl Send for GetLegacyWafRuleParams
impl Sync for GetLegacyWafRuleParams
impl Unpin for GetLegacyWafRuleParams
impl UnwindSafe for GetLegacyWafRuleParams
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