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.RegexPatternSetSummary

Description

 
Synopsis

Documentation

data RegexPatternSetSummary Source #

High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a RegexPatternSet, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.

See: newRegexPatternSetSummary smart constructor.

Constructors

RegexPatternSetSummary' 

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 set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

  • 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 data type instance. You cannot change the name after you create the instance.

Instances

Instances details
FromJSON RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

Generic RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

Associated Types

type Rep RegexPatternSetSummary :: Type -> Type #

Read RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

Show RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

NFData RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

Methods

rnf :: RegexPatternSetSummary -> () #

Eq RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

Hashable RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

type Rep RegexPatternSetSummary Source # 
Instance details

Defined in Amazonka.WAFV2.Types.RegexPatternSetSummary

type Rep RegexPatternSetSummary = D1 ('MetaData "RegexPatternSetSummary" "Amazonka.WAFV2.Types.RegexPatternSetSummary" "amazonka-wafv2-2.0-3v3WgpYn7RT5hSd6MsT5dN" 'False) (C1 ('MetaCons "RegexPatternSetSummary'" '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 "lockToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newRegexPatternSetSummary :: RegexPatternSetSummary Source #

Create a value of RegexPatternSetSummary 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:RegexPatternSetSummary', regexPatternSetSummary_arn - The Amazon Resource Name (ARN) of the entity.

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

$sel:id:RegexPatternSetSummary', regexPatternSetSummary_id - A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

$sel:lockToken:RegexPatternSetSummary', regexPatternSetSummary_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:RegexPatternSetSummary', regexPatternSetSummary_name - The name of the data type instance. You cannot change the name after you create the instance.

regexPatternSetSummary_arn :: Lens' RegexPatternSetSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the entity.

regexPatternSetSummary_description :: Lens' RegexPatternSetSummary (Maybe Text) Source #

A description of the set that helps with identification.

regexPatternSetSummary_id :: Lens' RegexPatternSetSummary (Maybe Text) Source #

A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

regexPatternSetSummary_lockToken :: Lens' RegexPatternSetSummary (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.

regexPatternSetSummary_name :: Lens' RegexPatternSetSummary (Maybe Text) Source #

The name of the data type instance. You cannot change the name after you create the instance.