amazonka-wafv2-2.0: Amazon WAFV2 SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.WAFV2.Types.ManagedRuleSetSummary

Description

 
Synopsis

Documentation

data ManagedRuleSetSummary Source #

High-level information for a managed rule set.

This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.

Vendors, you can use the managed rule set APIs to provide controlled rollout of your versioned managed rule group offerings for your customers. The APIs are ListManagedRuleSets, GetManagedRuleSet, PutManagedRuleSetVersions, and UpdateManagedRuleSetVersionExpiryDate.

See: newManagedRuleSetSummary smart constructor.

Constructors

ManagedRuleSetSummary' 

Fields

  • arn :: Maybe Text

    The Amazon Resource Name (ARN) of the entity.

  • description :: Maybe Text

    A description of the set that helps with identification.

  • id :: Maybe Text

    A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

  • labelNamespace :: Maybe Text

    The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

    • The syntax for the label namespace prefix for a managed rule group is the following:

      awswaf:managed:<vendor>:<rule group name>:

    • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

      <label namespace>:<label from rule>
  • lockToken :: Maybe Text

    A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

  • name :: Maybe Text

    The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

    This name is assigned to the corresponding managed rule group, which your customers can access and use.

Instances

Instances details
FromJSON ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

Generic ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

Associated Types

type Rep ManagedRuleSetSummary :: Type -> Type #

Read ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

Show ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

NFData ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

Methods

rnf :: ManagedRuleSetSummary -> () #

Eq ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

Hashable ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

type Rep ManagedRuleSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.ManagedRuleSetSummary

type Rep ManagedRuleSetSummary = D1 ('MetaData "ManagedRuleSetSummary" "Amazonka.WAFV2.Types.ManagedRuleSetSummary" "amazonka-wafv2-2.0-3v3WgpYn7RT5hSd6MsT5dN" 'False) (C1 ('MetaCons "ManagedRuleSetSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "labelNamespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "lockToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newManagedRuleSetSummary :: ManagedRuleSetSummary Source #

Create a value of ManagedRuleSetSummary with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:arn:ManagedRuleSetSummary', managedRuleSetSummary_arn - The Amazon Resource Name (ARN) of the entity.

$sel:description:ManagedRuleSetSummary', managedRuleSetSummary_description - A description of the set that helps with identification.

$sel:id:ManagedRuleSetSummary', managedRuleSetSummary_id - A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

$sel:labelNamespace:ManagedRuleSetSummary', managedRuleSetSummary_labelNamespace - The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

$sel:lockToken:ManagedRuleSetSummary', managedRuleSetSummary_lockToken - A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

$sel:name:ManagedRuleSetSummary', managedRuleSetSummary_name - The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.

managedRuleSetSummary_arn :: Lens' ManagedRuleSetSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the entity.

managedRuleSetSummary_description :: Lens' ManagedRuleSetSummary (Maybe Text) Source #

A description of the set that helps with identification.

managedRuleSetSummary_id :: Lens' ManagedRuleSetSummary (Maybe Text) Source #

A unique identifier for the managed rule set. The ID is returned in the responses to commands like list. You provide it to operations like get and update.

managedRuleSetSummary_labelNamespace :: Lens' ManagedRuleSetSummary (Maybe Text) Source #

The label namespace prefix for the managed rule groups that are offered to customers from this managed rule set. All labels that are added by rules in the managed rule group have this prefix.

  • The syntax for the label namespace prefix for a managed rule group is the following:

    awswaf:managed:<vendor>:<rule group name>:

  • When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:

    <label namespace>:<label from rule>

managedRuleSetSummary_lockToken :: Lens' ManagedRuleSetSummary (Maybe Text) Source #

A token used for optimistic locking. WAF returns a token to your get and list requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like update and delete. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a WAFOptimisticLockException. If this happens, perform another get, and use the new token returned by that operation.

managedRuleSetSummary_name :: Lens' ManagedRuleSetSummary (Maybe Text) Source #

The name of the managed rule set. You use this, along with the rule set ID, to identify the rule set.

This name is assigned to the corresponding managed rule group, which your customers can access and use.