Struct rusoto_waf_regional::RuleGroupSummary[][src]

pub struct RuleGroupSummary {
    pub name: String,
    pub rule_group_id: String,
}

Contains the identifier and the friendly name or description of the RuleGroup.

Fields

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

A unique identifier for a RuleGroup. You use RuleGroupId to get more information about a RuleGroup (see GetRuleGroup), update a RuleGroup (see UpdateRuleGroup), insert a RuleGroup into a WebACL or delete one from a WebACL (see UpdateWebACL), or delete a RuleGroup from AWS WAF (see DeleteRuleGroup).

RuleGroupId is returned by CreateRuleGroup and by ListRuleGroups.

Trait Implementations

impl Default for RuleGroupSummary
[src]

Returns the "default value" for a type. Read more

impl Debug for RuleGroupSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for RuleGroupSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RuleGroupSummary
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations