aws-sdk 2.992.0 → 2.996.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 +27 -1
- package/README.md +1 -1
- package/apis/appintegrations-2020-07-29.min.json +222 -8
- package/apis/appsync-2017-07-25.min.json +97 -77
- package/apis/connect-2017-08-08.min.json +25 -11
- package/apis/ec2-2016-11-15.min.json +25 -15
- package/apis/imagebuilder-2019-12-02.min.json +116 -82
- package/apis/license-manager-2018-08-01.min.json +186 -72
- package/apis/mediaconvert-2017-08-29.min.json +194 -83
- package/apis/mediapackage-vod-2018-11-07.min.json +3 -0
- package/apis/mediatailor-2018-04-23.min.json +198 -149
- package/apis/metadata.json +7 -0
- package/apis/models.lex.v2-2020-08-07.min.json +179 -22
- package/apis/models.lex.v2-2020-08-07.paginators.json +5 -0
- package/apis/pinpoint-2016-12-01.min.json +226 -213
- package/apis/ssm-2014-11-06.min.json +105 -100
- package/apis/ssm-2014-11-06.waiters2.json +5 -0
- package/apis/voice-id-2021-09-27.examples.json +5 -0
- package/apis/voice-id-2021-09-27.min.json +903 -0
- package/apis/voice-id-2021-09-27.paginators.json +24 -0
- package/apis/wafv2-2019-07-29.min.json +114 -97
- package/apis/wisdom-2020-10-19.examples.json +5 -0
- package/apis/wisdom-2020-10-19.min.json +1525 -0
- package/apis/wisdom-2020-10-19.paginators.json +46 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/appintegrations.d.ts +273 -2
- package/clients/appsync.d.ts +35 -13
- package/clients/connect.d.ts +60 -32
- package/clients/ec2.d.ts +17 -5
- package/clients/elbv2.d.ts +7 -7
- package/clients/iam.d.ts +85 -85
- package/clients/imagebuilder.d.ts +73 -25
- package/clients/lexmodelsv2.d.ts +188 -0
- package/clients/licensemanager.d.ts +215 -42
- package/clients/mediaconvert.d.ts +154 -17
- package/clients/mediapackagevod.d.ts +4 -0
- package/clients/mediatailor.d.ts +47 -1
- package/clients/pinpoint.d.ts +24 -0
- package/clients/ssm.d.ts +40 -19
- package/clients/voiceid.d.ts +1133 -0
- package/clients/voiceid.js +18 -0
- package/clients/wafv2.d.ts +18 -0
- package/clients/wisdom.d.ts +1499 -0
- package/clients/wisdom.js +18 -0
- package/dist/aws-sdk-core-react-native.js +5 -5
- package/dist/aws-sdk-react-native.js +96 -22
- package/dist/aws-sdk.js +173 -132
- package/dist/aws-sdk.min.js +70 -70
- package/lib/config.js +1 -1
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +1 -1
- package/lib/http_request.d.ts +1 -1
- package/lib/signers/v4.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['voiceid'] = {};
|
|
7
|
+
AWS.VoiceID = Service.defineService('voiceid', ['2021-09-27']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['voiceid'], '2021-09-27', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/voice-id-2021-09-27.min.json');
|
|
11
|
+
model.paginators = require('../apis/voice-id-2021-09-27.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.VoiceID;
|
package/clients/wafv2.d.ts
CHANGED
|
@@ -1897,6 +1897,20 @@ declare namespace WAFV2 {
|
|
|
1897
1897
|
*/
|
|
1898
1898
|
RegexString?: RegexPatternString;
|
|
1899
1899
|
}
|
|
1900
|
+
export interface RegexMatchStatement {
|
|
1901
|
+
/**
|
|
1902
|
+
* The string representing the regular expression.
|
|
1903
|
+
*/
|
|
1904
|
+
RegexString: RegexPatternString;
|
|
1905
|
+
/**
|
|
1906
|
+
* The part of a web request that you want WAF to inspect. For more information, see FieldToMatch.
|
|
1907
|
+
*/
|
|
1908
|
+
FieldToMatch: FieldToMatch;
|
|
1909
|
+
/**
|
|
1910
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. If you specify one or more transformations in a rule statement, WAF performs all transformations on the content of the request component identified by FieldToMatch, starting from the lowest priority setting, before inspecting the content for a match.
|
|
1911
|
+
*/
|
|
1912
|
+
TextTransformations: TextTransformations;
|
|
1913
|
+
}
|
|
1900
1914
|
export interface RegexPatternSet {
|
|
1901
1915
|
/**
|
|
1902
1916
|
* The name of the set. You cannot change the name after you create the set.
|
|
@@ -2236,6 +2250,10 @@ declare namespace WAFV2 {
|
|
|
2236
2250
|
* A rule statement that defines a string match search against labels that have been added to the web request by rules that have already run in the web ACL. The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.
|
|
2237
2251
|
*/
|
|
2238
2252
|
LabelMatchStatement?: LabelMatchStatement;
|
|
2253
|
+
/**
|
|
2254
|
+
* A rule statement used to search web request components for a match against a single regular expression.
|
|
2255
|
+
*/
|
|
2256
|
+
RegexMatchStatement?: RegexMatchStatement;
|
|
2239
2257
|
}
|
|
2240
2258
|
export type Statements = Statement[];
|
|
2241
2259
|
export interface Tag {
|