#[non_exhaustive]pub struct RiskExceptionConfigurationType {
pub blocked_ip_range_list: Option<Vec<String>>,
pub skipped_ip_range_list: Option<Vec<String>>,
}Expand description
The type of the configuration to override the risk decision.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.blocked_ip_range_list: Option<Vec<String>>Overrides the risk decision to always block the pre-authentication requests. The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
skipped_ip_range_list: Option<Vec<String>>Risk detection isn't performed on the IP addresses in this range list. The IP range is in CIDR notation.
Implementations§
source§impl RiskExceptionConfigurationType
impl RiskExceptionConfigurationType
sourcepub fn blocked_ip_range_list(&self) -> &[String]
pub fn blocked_ip_range_list(&self) -> &[String]
Overrides the risk decision to always block the pre-authentication requests. The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .blocked_ip_range_list.is_none().
sourcepub fn skipped_ip_range_list(&self) -> &[String]
pub fn skipped_ip_range_list(&self) -> &[String]
Risk detection isn't performed on the IP addresses in this range list. The IP range is in CIDR notation.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .skipped_ip_range_list.is_none().
source§impl RiskExceptionConfigurationType
impl RiskExceptionConfigurationType
sourcepub fn builder() -> RiskExceptionConfigurationTypeBuilder
pub fn builder() -> RiskExceptionConfigurationTypeBuilder
Creates a new builder-style object to manufacture RiskExceptionConfigurationType.
Trait Implementations§
source§impl Clone for RiskExceptionConfigurationType
impl Clone for RiskExceptionConfigurationType
source§fn clone(&self) -> RiskExceptionConfigurationType
fn clone(&self) -> RiskExceptionConfigurationType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for RiskExceptionConfigurationType
impl PartialEq for RiskExceptionConfigurationType
source§fn eq(&self, other: &RiskExceptionConfigurationType) -> bool
fn eq(&self, other: &RiskExceptionConfigurationType) -> bool
self and other values to be equal, and is used
by ==.