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

Contents

Description

Returns an array of ByteMatchSetSummary objects.

Synopsis

Creating a Request

listByteMatchSets :: ListByteMatchSets Source #

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

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

  • lbmsNextMarker - If you specify a value for Limit and you have more ByteMatchSets 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 ListByteMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of ByteMatchSets .
  • lbmsLimit - Specifies the number of ByteMatchSet objects that you want AWS WAF to return for this request. If you have more ByteMatchSets objects than the number you specify for Limit , the response includes a NextMarker value that you can use to get another batch of ByteMatchSet objects.

data ListByteMatchSets Source #

See: listByteMatchSets smart constructor.

Instances
Eq ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Data ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Methods

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

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

toConstr :: ListByteMatchSets -> Constr #

dataTypeOf :: ListByteMatchSets -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Show ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Generic ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Associated Types

type Rep ListByteMatchSets :: Type -> Type #

Hashable ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

ToJSON ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

AWSRequest ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Associated Types

type Rs ListByteMatchSets :: Type #

ToHeaders ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

ToPath ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

ToQuery ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

NFData ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Methods

rnf :: ListByteMatchSets -> () #

type Rep ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

type Rep ListByteMatchSets = D1 (MetaData "ListByteMatchSets" "Network.AWS.WAFRegional.ListByteMatchSets" "amazonka-waf-regional-1.6.1-IvDSn8aH4TMJoxm1GVf7Ug" False) (C1 (MetaCons "ListByteMatchSets'" PrefixI True) (S1 (MetaSel (Just "_lbmsNextMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_lbmsLimit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat))))
type Rs ListByteMatchSets Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Request Lenses

lbmsNextMarker :: Lens' ListByteMatchSets (Maybe Text) Source #

If you specify a value for Limit and you have more ByteMatchSets 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 ListByteMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of ByteMatchSets .

lbmsLimit :: Lens' ListByteMatchSets (Maybe Natural) Source #

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

Destructuring the Response

listByteMatchSetsResponse Source #

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

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

  • lbmsrsByteMatchSets - An array of ByteMatchSetSummary objects.
  • lbmsrsNextMarker - If you have more ByteMatchSet objects than the number that you specified for Limit in the request, the response includes a NextMarker value. To list more ByteMatchSet objects, submit another ListByteMatchSets request, and specify the NextMarker value from the response in the NextMarker value in the next request.
  • lbmsrsResponseStatus - -- | The response status code.

data ListByteMatchSetsResponse Source #

See: listByteMatchSetsResponse smart constructor.

Instances
Eq ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Data ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Methods

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

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

toConstr :: ListByteMatchSetsResponse -> Constr #

dataTypeOf :: ListByteMatchSetsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Show ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Generic ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

Associated Types

type Rep ListByteMatchSetsResponse :: Type -> Type #

NFData ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

type Rep ListByteMatchSetsResponse Source # 
Instance details

Defined in Network.AWS.WAFRegional.ListByteMatchSets

type Rep ListByteMatchSetsResponse = D1 (MetaData "ListByteMatchSetsResponse" "Network.AWS.WAFRegional.ListByteMatchSets" "amazonka-waf-regional-1.6.1-IvDSn8aH4TMJoxm1GVf7Ug" False) (C1 (MetaCons "ListByteMatchSetsResponse'" PrefixI True) (S1 (MetaSel (Just "_lbmsrsByteMatchSets") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ByteMatchSetSummary])) :*: (S1 (MetaSel (Just "_lbmsrsNextMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_lbmsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

lbmsrsNextMarker :: Lens' ListByteMatchSetsResponse (Maybe Text) Source #

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