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

Description

Retrieves the specified RegexPatternSet.

Synopsis

Creating a Request

data GetRegexPatternSet Source #

See: newGetRegexPatternSet smart constructor.

Constructors

GetRegexPatternSet' 

Fields

  • name :: Text

    The name of the set. You cannot change the name after you create the set.

  • scope :: Scope

    Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon Cognito user pool.

    To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

    • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
    • API and SDKs - For all calls, use the Region endpoint us-east-1.
  • id :: 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.

Instances

Instances details
ToJSON GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

ToHeaders GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

ToPath GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

ToQuery GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

AWSRequest GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Associated Types

type AWSResponse GetRegexPatternSet #

Generic GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Associated Types

type Rep GetRegexPatternSet :: Type -> Type #

Read GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Show GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

NFData GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Methods

rnf :: GetRegexPatternSet -> () #

Eq GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Hashable GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

type AWSResponse GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

type Rep GetRegexPatternSet Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

type Rep GetRegexPatternSet = D1 ('MetaData "GetRegexPatternSet" "Amazonka.WAFV2.GetRegexPatternSet" "amazonka-wafv2-2.0-3v3WgpYn7RT5hSd6MsT5dN" 'False) (C1 ('MetaCons "GetRegexPatternSet'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "scope") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Scope) :*: S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetRegexPatternSet Source #

Create a value of GetRegexPatternSet 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:

GetRegexPatternSet, getRegexPatternSet_name - The name of the set. You cannot change the name after you create the set.

GetRegexPatternSet, getRegexPatternSet_scope - Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon Cognito user pool.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
  • API and SDKs - For all calls, use the Region endpoint us-east-1.

GetRegexPatternSet, getRegexPatternSet_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.

Request Lenses

getRegexPatternSet_name :: Lens' GetRegexPatternSet Text Source #

The name of the set. You cannot change the name after you create the set.

getRegexPatternSet_scope :: Lens' GetRegexPatternSet Scope Source #

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon Cognito user pool.

To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:

  • CLI - Specify the Region when you use the CloudFront scope: --scope=CLOUDFRONT --region=us-east-1.
  • API and SDKs - For all calls, use the Region endpoint us-east-1.

getRegexPatternSet_id :: Lens' GetRegexPatternSet 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.

Destructuring the Response

data GetRegexPatternSetResponse Source #

See: newGetRegexPatternSetResponse smart constructor.

Constructors

GetRegexPatternSetResponse' 

Fields

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

  • regexPatternSet :: Maybe RegexPatternSet
     
  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic GetRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Associated Types

type Rep GetRegexPatternSetResponse :: Type -> Type #

Read GetRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Show GetRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

NFData GetRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

Eq GetRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

type Rep GetRegexPatternSetResponse Source # 
Instance details

Defined in Amazonka.WAFV2.GetRegexPatternSet

type Rep GetRegexPatternSetResponse = D1 ('MetaData "GetRegexPatternSetResponse" "Amazonka.WAFV2.GetRegexPatternSet" "amazonka-wafv2-2.0-3v3WgpYn7RT5hSd6MsT5dN" 'False) (C1 ('MetaCons "GetRegexPatternSetResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "lockToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "regexPatternSet") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RegexPatternSet)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetRegexPatternSetResponse Source #

Create a value of GetRegexPatternSetResponse 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:

GetRegexPatternSetResponse, getRegexPatternSetResponse_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:regexPatternSet:GetRegexPatternSetResponse', getRegexPatternSetResponse_regexPatternSet -

$sel:httpStatus:GetRegexPatternSetResponse', getRegexPatternSetResponse_httpStatus - The response's http status code.

Response Lenses

getRegexPatternSetResponse_lockToken :: Lens' GetRegexPatternSetResponse (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.