Struct aws_sdk_securityhub::model::AwsWafWebAclDetails
source · #[non_exhaustive]pub struct AwsWafWebAclDetails { /* private fields */ }
Expand description
Provides information about an WAF web access control list (web ACL).
Implementations§
source§impl AwsWafWebAclDetails
impl AwsWafWebAclDetails
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
A friendly name or description of the web ACL. You can't change the name of a web ACL after you create it.
sourcepub fn default_action(&self) -> Option<&str>
pub fn default_action(&self) -> Option<&str>
The action to perform if none of the rules contained in the web ACL match.
sourcepub fn rules(&self) -> Option<&[AwsWafWebAclRule]>
pub fn rules(&self) -> Option<&[AwsWafWebAclRule]>
An array that contains the action for each rule in a web ACL, the priority of the rule, and the ID of the rule.
sourcepub fn web_acl_id(&self) -> Option<&str>
pub fn web_acl_id(&self) -> Option<&str>
A unique identifier for a web ACL.
source§impl AwsWafWebAclDetails
impl AwsWafWebAclDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsWafWebAclDetails
.
Trait Implementations§
source§impl Clone for AwsWafWebAclDetails
impl Clone for AwsWafWebAclDetails
source§fn clone(&self) -> AwsWafWebAclDetails
fn clone(&self) -> AwsWafWebAclDetails
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 AwsWafWebAclDetails
impl Debug for AwsWafWebAclDetails
source§impl PartialEq<AwsWafWebAclDetails> for AwsWafWebAclDetails
impl PartialEq<AwsWafWebAclDetails> for AwsWafWebAclDetails
source§fn eq(&self, other: &AwsWafWebAclDetails) -> bool
fn eq(&self, other: &AwsWafWebAclDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.