| 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.CreateIPSet
Description
Creates an IPSet , which you use to specify which web requests you want to allow or block based on the IP addresses that the requests originate from. For example, if you're receiving a lot of requests from one or more individual IP addresses or one or more ranges of IP addresses and you want to block the requests, you can create an IPSet that contains those IP addresses and then configure AWS WAF to block the requests.
To create and configure an IPSet , perform the following steps:
- Use
GetChangeTokento get the change token that you provide in theChangeTokenparameter of aCreateIPSetrequest. - Submit a
CreateIPSetrequest. - Use
GetChangeTokento get the change token that you provide in theChangeTokenparameter of anUpdateIPSetrequest. - Submit an
UpdateIPSetrequest to specify the IP addresses 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
- createIPSet :: Text -> Text -> CreateIPSet
- data CreateIPSet
- cisName :: Lens' CreateIPSet Text
- cisChangeToken :: Lens' CreateIPSet Text
- createIPSetResponse :: Int -> CreateIPSetResponse
- data CreateIPSetResponse
- cisrsChangeToken :: Lens' CreateIPSetResponse (Maybe Text)
- cisrsIPSet :: Lens' CreateIPSetResponse (Maybe IPSet)
- cisrsResponseStatus :: Lens' CreateIPSetResponse Int
Creating a Request
Arguments
| :: Text | |
| -> Text | |
| -> CreateIPSet |
Creates a value of CreateIPSet with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
cisName- A friendly name or description of theIPSet. You can't changeNameafter you create theIPSet.cisChangeToken- The value returned by the most recent call toGetChangeToken.
data CreateIPSet Source #
See: createIPSet smart constructor.
Instances
Request Lenses
cisName :: Lens' CreateIPSet Text Source #
A friendly name or description of the IPSet . You can't change Name after you create the IPSet .
cisChangeToken :: Lens' CreateIPSet Text Source #
The value returned by the most recent call to GetChangeToken .
Destructuring the Response
Arguments
| :: Int | |
| -> CreateIPSetResponse |
Creates a value of CreateIPSetResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
cisrsChangeToken- TheChangeTokenthat you used to submit theCreateIPSetrequest. You can also use this value to query the status of the request. For more information, seeGetChangeTokenStatus.cisrsIPSet- TheIPSetreturned in theCreateIPSetresponse.cisrsResponseStatus- -- | The response status code.
data CreateIPSetResponse Source #
See: createIPSetResponse smart constructor.
Instances
Response Lenses
cisrsChangeToken :: Lens' CreateIPSetResponse (Maybe Text) Source #
The ChangeToken that you used to submit the CreateIPSet request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus .
cisrsIPSet :: Lens' CreateIPSetResponse (Maybe IPSet) Source #
The IPSet returned in the CreateIPSet response.
cisrsResponseStatus :: Lens' CreateIPSetResponse Int Source #
- - | The response status code.