[][src]Struct rusoto_securityhub::AwsWafWebAclDetails

pub struct AwsWafWebAclDetails {
    pub default_action: Option<String>,
    pub name: Option<String>,
    pub rules: Option<Vec<AwsWafWebAclRule>>,
    pub web_acl_id: Option<String>,
}

Details about a WAF WebACL.

Fields

default_action: Option<String>

The action to perform if none of the rules contained in the WebACL match.

name: Option<String>

A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.

rules: Option<Vec<AwsWafWebAclRule>>

An array that contains the action for each rule in a WebACL, the priority of the rule, and the ID of the rule.

web_acl_id: Option<String>

A unique identifier for a WebACL.

Trait Implementations

impl Clone for AwsWafWebAclDetails[src]

impl Debug for AwsWafWebAclDetails[src]

impl Default for AwsWafWebAclDetails[src]

impl<'de> Deserialize<'de> for AwsWafWebAclDetails[src]

impl PartialEq<AwsWafWebAclDetails> for AwsWafWebAclDetails[src]

impl Serialize for AwsWafWebAclDetails[src]

impl StructuralPartialEq for AwsWafWebAclDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.