amazonka-waf-1.6.1: Amazon WAF SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.WAF.ListRegexMatchSets

Contents

Description

Returns an array of RegexMatchSetSummary objects.

Synopsis

Creating a Request

listRegexMatchSets :: ListRegexMatchSets Source #

Creates a value of ListRegexMatchSets with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • lrmsNextMarker - If you specify a value for Limit and you have more RegexMatchSet objects than the value of Limit , AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets . For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.
  • lrmsLimit - Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit , the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.

data ListRegexMatchSets Source #

See: listRegexMatchSets smart constructor.

Instances
Eq ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Data ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListRegexMatchSets -> c ListRegexMatchSets #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListRegexMatchSets #

toConstr :: ListRegexMatchSets -> Constr #

dataTypeOf :: ListRegexMatchSets -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ListRegexMatchSets) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListRegexMatchSets) #

gmapT :: (forall b. Data b => b -> b) -> ListRegexMatchSets -> ListRegexMatchSets #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListRegexMatchSets -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListRegexMatchSets -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListRegexMatchSets -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListRegexMatchSets -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListRegexMatchSets -> m ListRegexMatchSets #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListRegexMatchSets -> m ListRegexMatchSets #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListRegexMatchSets -> m ListRegexMatchSets #

Read ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Show ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Generic ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Associated Types

type Rep ListRegexMatchSets :: Type -> Type #

Hashable ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

ToJSON ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

AWSRequest ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Associated Types

type Rs ListRegexMatchSets :: Type #

ToHeaders ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

ToPath ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

ToQuery ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

NFData ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Methods

rnf :: ListRegexMatchSets -> () #

type Rep ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

type Rep ListRegexMatchSets = D1 (MetaData "ListRegexMatchSets" "Network.AWS.WAF.ListRegexMatchSets" "amazonka-waf-1.6.1-AAUMqlxoZ2N3dlHnZE2nzz" False) (C1 (MetaCons "ListRegexMatchSets'" PrefixI True) (S1 (MetaSel (Just "_lrmsNextMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_lrmsLimit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat))))
type Rs ListRegexMatchSets Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Request Lenses

lrmsNextMarker :: Lens' ListRegexMatchSets (Maybe Text) Source #

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

lrmsLimit :: Lens' ListRegexMatchSets (Maybe Natural) Source #

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

Destructuring the Response

listRegexMatchSetsResponse Source #

Creates a value of ListRegexMatchSetsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • lrmsrsRegexMatchSets - An array of RegexMatchSetSummary objects.
  • lrmsrsNextMarker - If you have more RegexMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more RegexMatchSet objects, submit another ListRegexMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.
  • lrmsrsResponseStatus - -- | The response status code.

data ListRegexMatchSetsResponse Source #

See: listRegexMatchSetsResponse smart constructor.

Instances
Eq ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Data ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListRegexMatchSetsResponse -> c ListRegexMatchSetsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListRegexMatchSetsResponse #

toConstr :: ListRegexMatchSetsResponse -> Constr #

dataTypeOf :: ListRegexMatchSetsResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ListRegexMatchSetsResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListRegexMatchSetsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListRegexMatchSetsResponse -> ListRegexMatchSetsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListRegexMatchSetsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListRegexMatchSetsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListRegexMatchSetsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListRegexMatchSetsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListRegexMatchSetsResponse -> m ListRegexMatchSetsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListRegexMatchSetsResponse -> m ListRegexMatchSetsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListRegexMatchSetsResponse -> m ListRegexMatchSetsResponse #

Read ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Show ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Generic ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

Associated Types

type Rep ListRegexMatchSetsResponse :: Type -> Type #

NFData ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

type Rep ListRegexMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAF.ListRegexMatchSets

type Rep ListRegexMatchSetsResponse = D1 (MetaData "ListRegexMatchSetsResponse" "Network.AWS.WAF.ListRegexMatchSets" "amazonka-waf-1.6.1-AAUMqlxoZ2N3dlHnZE2nzz" False) (C1 (MetaCons "ListRegexMatchSetsResponse'" PrefixI True) (S1 (MetaSel (Just "_lrmsrsRegexMatchSets") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [RegexMatchSetSummary])) :*: (S1 (MetaSel (Just "_lrmsrsNextMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_lrmsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

lrmsrsNextMarker :: Lens' ListRegexMatchSetsResponse (Maybe Text) Source #

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