Copyright | (c) 2013-2021 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 |
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.
Creates a SqlInjectionMatchSet, which you use to allow, block, or count requests that contain snippets of SQL code in a specified part of web requests. AWS WAF searches for character sequences that are likely to be malicious strings.
To create and configure a SqlInjectionMatchSet
, perform the following
steps:
- Use GetChangeToken to get the change token that you provide in the
ChangeToken
parameter of aCreateSqlInjectionMatchSet
request. - Submit a
CreateSqlInjectionMatchSet
request. - Use
GetChangeToken
to get the change token that you provide in theChangeToken
parameter of an UpdateSqlInjectionMatchSet request. - Submit an UpdateSqlInjectionMatchSet request to specify the parts of web requests in which you want to allow, block, or count malicious SQL code.
For more information about how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer Guide.
Synopsis
- data CreateSqlInjectionMatchSet = CreateSqlInjectionMatchSet' {
- name :: Text
- changeToken :: Text
- newCreateSqlInjectionMatchSet :: Text -> Text -> CreateSqlInjectionMatchSet
- createSqlInjectionMatchSet_name :: Lens' CreateSqlInjectionMatchSet Text
- createSqlInjectionMatchSet_changeToken :: Lens' CreateSqlInjectionMatchSet Text
- data CreateSqlInjectionMatchSetResponse = CreateSqlInjectionMatchSetResponse' {}
- newCreateSqlInjectionMatchSetResponse :: Int -> CreateSqlInjectionMatchSetResponse
- createSqlInjectionMatchSetResponse_sqlInjectionMatchSet :: Lens' CreateSqlInjectionMatchSetResponse (Maybe SqlInjectionMatchSet)
- createSqlInjectionMatchSetResponse_changeToken :: Lens' CreateSqlInjectionMatchSetResponse (Maybe Text)
- createSqlInjectionMatchSetResponse_httpStatus :: Lens' CreateSqlInjectionMatchSetResponse Int
Creating a Request
data CreateSqlInjectionMatchSet Source #
A request to create a SqlInjectionMatchSet.
See: newCreateSqlInjectionMatchSet
smart constructor.
CreateSqlInjectionMatchSet' | |
|
Instances
newCreateSqlInjectionMatchSet Source #
:: Text | |
-> Text | |
-> CreateSqlInjectionMatchSet |
Create a value of CreateSqlInjectionMatchSet
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:name:CreateSqlInjectionMatchSet'
, createSqlInjectionMatchSet_name
- A friendly name or description for the SqlInjectionMatchSet that you're
creating. You can't change Name
after you create the
SqlInjectionMatchSet
.
$sel:changeToken:CreateSqlInjectionMatchSet'
, createSqlInjectionMatchSet_changeToken
- The value returned by the most recent call to GetChangeToken.
Request Lenses
createSqlInjectionMatchSet_name :: Lens' CreateSqlInjectionMatchSet Text Source #
A friendly name or description for the SqlInjectionMatchSet that you're
creating. You can't change Name
after you create the
SqlInjectionMatchSet
.
createSqlInjectionMatchSet_changeToken :: Lens' CreateSqlInjectionMatchSet Text Source #
The value returned by the most recent call to GetChangeToken.
Destructuring the Response
data CreateSqlInjectionMatchSetResponse Source #
The response to a CreateSqlInjectionMatchSet
request.
See: newCreateSqlInjectionMatchSetResponse
smart constructor.
CreateSqlInjectionMatchSetResponse' | |
|
Instances
newCreateSqlInjectionMatchSetResponse Source #
Create a value of CreateSqlInjectionMatchSetResponse
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:sqlInjectionMatchSet:CreateSqlInjectionMatchSetResponse'
, createSqlInjectionMatchSetResponse_sqlInjectionMatchSet
- A SqlInjectionMatchSet.
$sel:changeToken:CreateSqlInjectionMatchSet'
, createSqlInjectionMatchSetResponse_changeToken
- The ChangeToken
that you used to submit the
CreateSqlInjectionMatchSet
request. You can also use this value to
query the status of the request. For more information, see
GetChangeTokenStatus.
$sel:httpStatus:CreateSqlInjectionMatchSetResponse'
, createSqlInjectionMatchSetResponse_httpStatus
- The response's http status code.
Response Lenses
createSqlInjectionMatchSetResponse_sqlInjectionMatchSet :: Lens' CreateSqlInjectionMatchSetResponse (Maybe SqlInjectionMatchSet) Source #
A SqlInjectionMatchSet.
createSqlInjectionMatchSetResponse_changeToken :: Lens' CreateSqlInjectionMatchSetResponse (Maybe Text) Source #
The ChangeToken
that you used to submit the
CreateSqlInjectionMatchSet
request. You can also use this value to
query the status of the request. For more information, see
GetChangeTokenStatus.
createSqlInjectionMatchSetResponse_httpStatus :: Lens' CreateSqlInjectionMatchSetResponse Int Source #
The response's http status code.