aws-sdk 2.1651.0 → 2.1652.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/README.md +1 -1
- package/apis/apigateway-2015-07-09.min.json +7 -1
- package/apis/cognito-identity-2014-06-30.min.json +23 -5
- package/apis/connect-2017-08-08.min.json +432 -285
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/docdb-2014-10-31.min.json +7 -1
- package/apis/payment-cryptography-2021-09-14.min.json +10 -1
- package/apis/payment-cryptography-data-2022-02-03.min.json +409 -367
- package/apis/payment-cryptography-data-2022-02-03.waiters2.json +5 -0
- package/apis/states-2016-11-23.min.json +4 -1
- package/apis/swf-2012-01-25.min.json +4 -1
- package/apis/wafv2-2019-07-29.min.json +4 -1
- package/clients/connect.d.ts +184 -6
- package/clients/eks.d.ts +1 -1
- package/clients/paymentcryptography.d.ts +3 -3
- package/clients/paymentcryptographydata.d.ts +302 -260
- package/clients/paymentcryptographydata.js +1 -0
- package/clients/wafv2.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +297 -290
- package/dist/aws-sdk.js +471 -294
- package/dist/aws-sdk.min.js +107 -107
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['paymentcryptographydata'], '2022-02-03
|
|
9
9
|
get: function get() {
|
10
10
|
var model = require('../apis/payment-cryptography-data-2022-02-03.min.json');
|
11
11
|
model.paginators = require('../apis/payment-cryptography-data-2022-02-03.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/payment-cryptography-data-2022-02-03.waiters2.json').waiters;
|
12
13
|
return model;
|
13
14
|
},
|
14
15
|
enumerable: true,
|
package/clients/wafv2.d.ts
CHANGED
@@ -1777,7 +1777,7 @@ declare namespace WAFV2 {
|
|
1777
1777
|
*/
|
1778
1778
|
MatchScope: JsonMatchScope;
|
1779
1779
|
/**
|
1780
|
-
* What WAF should do if it fails to completely parse the JSON body. The options are the following: EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string. MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request. NO_MATCH - Treat the web request as not matching the rule statement. If you don't provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters.
|
1780
|
+
* What WAF should do if it fails to completely parse the JSON body. The options are the following: EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string. MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request. NO_MATCH - Treat the web request as not matching the rule statement. If you don't provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters. WAF parsing doesn't fully validate the input JSON string, so parsing can succeed even for invalid JSON. When parsing succeeds, WAF doesn't apply the fallback behavior. For more information, see JSON body in the WAF Developer Guide.
|
1781
1781
|
*/
|
1782
1782
|
InvalidFallbackBehavior?: BodyParsingFallbackBehavior;
|
1783
1783
|
/**
|