@aws-sdk/client-wafv2 3.141.0 → 3.145.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/README.md +5 -5
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +243 -441
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +409 -462
- package/dist-types/WAFV2.d.ts +9 -9
- package/dist-types/WAFV2Client.d.ts +5 -5
- package/dist-types/commands/AssociateWebACLCommand.d.ts +1 -1
- package/dist-types/commands/CreateWebACLCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateWebACLCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWebACLCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +72 -38
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-wafv2
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.143.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.142.0...v3.143.0) (2022-08-03)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **client-wafv2:** You can now associate an AWS WAF web ACL with an Amazon Cognito user pool. ([81aeece](https://github.com/aws/aws-sdk-js-v3/commit/81aeeceae2444f9a8cd0ae933f5645bf83f0ab5e))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **codegen:** general data mapping function ([#3830](https://github.com/aws/aws-sdk-js-v3/issues/3830)) ([9417eae](https://github.com/aws/aws-sdk-js-v3/commit/9417eae722806799fb4c15c07921574268c1165c))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
|
|
7
37
|
|
|
8
38
|
|
package/README.md
CHANGED
|
@@ -25,11 +25,11 @@ have retained the prior names, endpoints, and namespaces. </p>
|
|
|
25
25
|
see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">WAF Developer Guide</a>. </p>
|
|
26
26
|
</note>
|
|
27
27
|
<p>WAF is a web application firewall that lets you monitor the HTTP and HTTPS
|
|
28
|
-
requests that are forwarded to Amazon CloudFront, an Amazon API Gateway REST API, an Application Load Balancer,
|
|
29
|
-
GraphQL API. WAF also lets you control access to your content. Based on
|
|
28
|
+
requests that are forwarded to Amazon CloudFront, an Amazon API Gateway REST API, an Application Load Balancer, an AppSync
|
|
29
|
+
GraphQL API, or an Amazon Cognito user pool. WAF also lets you control access to your content. Based on conditions that
|
|
30
30
|
you specify, such as the IP addresses that requests originate from or the values of query
|
|
31
|
-
strings, the Amazon API Gateway REST API, CloudFront distribution, the Application Load Balancer,
|
|
32
|
-
API responds to requests either with the requested content or with an HTTP 403 status code
|
|
31
|
+
strings, the Amazon API Gateway REST API, CloudFront distribution, the Application Load Balancer, the AppSync GraphQL
|
|
32
|
+
API, or the Amazon Cognito user pool responds to requests either with the requested content or with an HTTP 403 status code
|
|
33
33
|
(Forbidden). You also can configure CloudFront to return a custom error page when a request is
|
|
34
34
|
blocked.</p>
|
|
35
35
|
<p>This API guide is for developers who need detailed information about WAF API actions,
|
|
@@ -40,7 +40,7 @@ Guide</a>.</p>
|
|
|
40
40
|
<ul>
|
|
41
41
|
<li>
|
|
42
42
|
<p>For regional applications, you can use any of the endpoints in the list.
|
|
43
|
-
A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API,
|
|
43
|
+
A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon Cognito user pool. </p>
|
|
44
44
|
</li>
|
|
45
45
|
<li>
|
|
46
46
|
<p>For Amazon CloudFront applications, you must use the API endpoint listed for
|
|
@@ -682,6 +682,7 @@ var ResourceType;
|
|
|
682
682
|
ResourceType["API_GATEWAY"] = "API_GATEWAY";
|
|
683
683
|
ResourceType["APPLICATION_LOAD_BALANCER"] = "APPLICATION_LOAD_BALANCER";
|
|
684
684
|
ResourceType["APPSYNC"] = "APPSYNC";
|
|
685
|
+
ResourceType["COGNITIO_USER_POOL"] = "COGNITO_USER_POOL";
|
|
685
686
|
})(ResourceType = exports.ResourceType || (exports.ResourceType = {}));
|
|
686
687
|
class WAFLogDestinationPermissionIssueException extends WAFV2ServiceException_1.WAFV2ServiceException {
|
|
687
688
|
constructor(opts) {
|