amazonka-waf-regional-2.0: Amazon WAF Regional 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.WAFRegional.ListSqlInjectionMatchSets

Description

This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.

For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.

Returns an array of SqlInjectionMatchSet objects.

Synopsis

Creating a Request

data ListSqlInjectionMatchSets Source #

A request to list the SqlInjectionMatchSet objects created by the current AWS account.

See: newListSqlInjectionMatchSets smart constructor.

Constructors

ListSqlInjectionMatchSets' 

Fields

  • limit :: Maybe Natural

    Specifies the number of SqlInjectionMatchSet objects that you want AWS WAF to return for this request. If you have more SqlInjectionMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

  • nextMarker :: Maybe Text

    If you specify a value for Limit and you have more SqlInjectionMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SqlInjectionMatchSets. For the second and subsequent ListSqlInjectionMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of SqlInjectionMatchSets.

Instances

Instances details
ToJSON ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

ToHeaders ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

ToPath ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

ToQuery ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

AWSRequest ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Generic ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Associated Types

type Rep ListSqlInjectionMatchSets :: Type -> Type #

Read ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Show ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

NFData ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Eq ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Hashable ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

type AWSResponse ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

type Rep ListSqlInjectionMatchSets Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

type Rep ListSqlInjectionMatchSets = D1 ('MetaData "ListSqlInjectionMatchSets" "Amazonka.WAFRegional.ListSqlInjectionMatchSets" "amazonka-waf-regional-2.0-83dY3vKOuQzAAW7M6EmzRI" 'False) (C1 ('MetaCons "ListSqlInjectionMatchSets'" 'PrefixI 'True) (S1 ('MetaSel ('Just "limit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListSqlInjectionMatchSets :: ListSqlInjectionMatchSets Source #

Create a value of ListSqlInjectionMatchSets 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:limit:ListSqlInjectionMatchSets', listSqlInjectionMatchSets_limit - Specifies the number of SqlInjectionMatchSet objects that you want AWS WAF to return for this request. If you have more SqlInjectionMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

ListSqlInjectionMatchSets, listSqlInjectionMatchSets_nextMarker - If you specify a value for Limit and you have more SqlInjectionMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SqlInjectionMatchSets. For the second and subsequent ListSqlInjectionMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of SqlInjectionMatchSets.

Request Lenses

listSqlInjectionMatchSets_limit :: Lens' ListSqlInjectionMatchSets (Maybe Natural) Source #

Specifies the number of SqlInjectionMatchSet objects that you want AWS WAF to return for this request. If you have more SqlInjectionMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.

listSqlInjectionMatchSets_nextMarker :: Lens' ListSqlInjectionMatchSets (Maybe Text) Source #

If you specify a value for Limit and you have more SqlInjectionMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of SqlInjectionMatchSets. For the second and subsequent ListSqlInjectionMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of SqlInjectionMatchSets.

Destructuring the Response

data ListSqlInjectionMatchSetsResponse Source #

The response to a ListSqlInjectionMatchSets request.

See: newListSqlInjectionMatchSetsResponse smart constructor.

Constructors

ListSqlInjectionMatchSetsResponse' 

Fields

  • nextMarker :: Maybe Text

    If you have more SqlInjectionMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SqlInjectionMatchSet objects, submit another ListSqlInjectionMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

  • sqlInjectionMatchSets :: Maybe [SqlInjectionMatchSetSummary]

    An array of SqlInjectionMatchSetSummary objects.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListSqlInjectionMatchSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Associated Types

type Rep ListSqlInjectionMatchSetsResponse :: Type -> Type #

Read ListSqlInjectionMatchSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Show ListSqlInjectionMatchSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

NFData ListSqlInjectionMatchSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

Eq ListSqlInjectionMatchSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

type Rep ListSqlInjectionMatchSetsResponse Source # 
Instance details

Defined in Amazonka.WAFRegional.ListSqlInjectionMatchSets

type Rep ListSqlInjectionMatchSetsResponse = D1 ('MetaData "ListSqlInjectionMatchSetsResponse" "Amazonka.WAFRegional.ListSqlInjectionMatchSets" "amazonka-waf-regional-2.0-83dY3vKOuQzAAW7M6EmzRI" 'False) (C1 ('MetaCons "ListSqlInjectionMatchSetsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "sqlInjectionMatchSets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [SqlInjectionMatchSetSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListSqlInjectionMatchSetsResponse Source #

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

ListSqlInjectionMatchSets, listSqlInjectionMatchSetsResponse_nextMarker - If you have more SqlInjectionMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SqlInjectionMatchSet objects, submit another ListSqlInjectionMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.

$sel:sqlInjectionMatchSets:ListSqlInjectionMatchSetsResponse', listSqlInjectionMatchSetsResponse_sqlInjectionMatchSets - An array of SqlInjectionMatchSetSummary objects.

$sel:httpStatus:ListSqlInjectionMatchSetsResponse', listSqlInjectionMatchSetsResponse_httpStatus - The response's http status code.

Response Lenses

listSqlInjectionMatchSetsResponse_nextMarker :: Lens' ListSqlInjectionMatchSetsResponse (Maybe Text) Source #

If you have more SqlInjectionMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more SqlInjectionMatchSet objects, submit another ListSqlInjectionMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.