pub struct SecurityPolicyRulePreconfiguredWafConfigExclusion {
pub request_cookies_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>,
pub request_headers_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>,
pub request_query_params_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>,
pub request_uris_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>,
pub target_rule_ids: Option<Vec<String>>,
pub target_rule_set: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
A list of request cookie names whose value will be excluded from inspection during preconfigured WAF evaluation.
request_headers_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>A list of request header names whose value will be excluded from inspection during preconfigured WAF evaluation.
request_query_params_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>A list of request query parameter names whose value will be excluded from inspection during preconfigured WAF evaluation. Note that the parameter can be in the query string or in the POST body.
request_uris_to_exclude: Option<Vec<SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>>A list of request URIs from the request line to be excluded from inspection during preconfigured WAF evaluation. When specifying this field, the query or fragment part should be excluded.
target_rule_ids: Option<Vec<String>>A list of target rule IDs under the WAF rule set to apply the preconfigured WAF exclusion. If omitted, it refers to all the rule IDs under the WAF rule set.
target_rule_set: Option<String>Target WAF rule set to apply the preconfigured WAF exclusion.
Trait Implementations§
Source§impl Clone for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl Clone for SecurityPolicyRulePreconfiguredWafConfigExclusion
Source§fn clone(&self) -> SecurityPolicyRulePreconfiguredWafConfigExclusion
fn clone(&self) -> SecurityPolicyRulePreconfiguredWafConfigExclusion
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl Default for SecurityPolicyRulePreconfiguredWafConfigExclusion
Source§fn default() -> SecurityPolicyRulePreconfiguredWafConfigExclusion
fn default() -> SecurityPolicyRulePreconfiguredWafConfigExclusion
Source§impl<'de> Deserialize<'de> for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl<'de> Deserialize<'de> for SecurityPolicyRulePreconfiguredWafConfigExclusion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for SecurityPolicyRulePreconfiguredWafConfigExclusion
Auto Trait Implementations§
impl Freeze for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl RefUnwindSafe for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl Send for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl Sync for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl Unpin for SecurityPolicyRulePreconfiguredWafConfigExclusion
impl UnwindSafe for SecurityPolicyRulePreconfiguredWafConfigExclusion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more