| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.WAF.CreateSizeConstraintSet
Description
Creates a SizeConstraintSet . You then use UpdateSizeConstraintSet to identify the part of a web request that you want AWS WAF to check for length, such as the length of the User-Agent header or the length of the query string. For example, you can create a SizeConstraintSet that matches any requests that have a query string that is longer than 100 bytes. You can then configure AWS WAF to reject those requests.
To create and configure a SizeConstraintSet , perform the following steps:
- Use
GetChangeTokento get the change token that you provide in theChangeTokenparameter of aCreateSizeConstraintSetrequest. - Submit a
CreateSizeConstraintSetrequest. - Use
GetChangeTokento get the change token that you provide in theChangeTokenparameter of anUpdateSizeConstraintSetrequest. - Submit an
UpdateSizeConstraintSetrequest to specify the part of the request that you want AWS WAF to inspect (for example, the header or the URI) and the value that you want AWS WAF to watch for.
For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide .
Synopsis
- createSizeConstraintSet :: Text -> Text -> CreateSizeConstraintSet
- data CreateSizeConstraintSet
- cscsName :: Lens' CreateSizeConstraintSet Text
- cscsChangeToken :: Lens' CreateSizeConstraintSet Text
- createSizeConstraintSetResponse :: Int -> CreateSizeConstraintSetResponse
- data CreateSizeConstraintSetResponse
- cscsrsSizeConstraintSet :: Lens' CreateSizeConstraintSetResponse (Maybe SizeConstraintSet)
- cscsrsChangeToken :: Lens' CreateSizeConstraintSetResponse (Maybe Text)
- cscsrsResponseStatus :: Lens' CreateSizeConstraintSetResponse Int
Creating a Request
createSizeConstraintSet Source #
Arguments
| :: Text | |
| -> Text | |
| -> CreateSizeConstraintSet |
Creates a value of CreateSizeConstraintSet with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
cscsName- A friendly name or description of theSizeConstraintSet. You can't changeNameafter you create aSizeConstraintSet.cscsChangeToken- The value returned by the most recent call toGetChangeToken.
data CreateSizeConstraintSet Source #
See: createSizeConstraintSet smart constructor.
Instances
Request Lenses
cscsName :: Lens' CreateSizeConstraintSet Text Source #
A friendly name or description of the SizeConstraintSet . You can't change Name after you create a SizeConstraintSet .
cscsChangeToken :: Lens' CreateSizeConstraintSet Text Source #
The value returned by the most recent call to GetChangeToken .
Destructuring the Response
createSizeConstraintSetResponse Source #
Arguments
| :: Int | |
| -> CreateSizeConstraintSetResponse |
Creates a value of CreateSizeConstraintSetResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
cscsrsSizeConstraintSet- ASizeConstraintSetthat contains noSizeConstraintobjects.cscsrsChangeToken- TheChangeTokenthat you used to submit theCreateSizeConstraintSetrequest. You can also use this value to query the status of the request. For more information, seeGetChangeTokenStatus.cscsrsResponseStatus- -- | The response status code.
data CreateSizeConstraintSetResponse Source #
See: createSizeConstraintSetResponse smart constructor.
Instances
Response Lenses
cscsrsSizeConstraintSet :: Lens' CreateSizeConstraintSetResponse (Maybe SizeConstraintSet) Source #
A SizeConstraintSet that contains no SizeConstraint objects.
cscsrsChangeToken :: Lens' CreateSizeConstraintSetResponse (Maybe Text) Source #
The ChangeToken that you used to submit the CreateSizeConstraintSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus .
cscsrsResponseStatus :: Lens' CreateSizeConstraintSetResponse Int Source #
- - | The response status code.