cdk-lambda-subminute 2.0.248 → 2.0.250
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/.jsii +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +28 -9
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +83 -0
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +241 -32
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +31 -1
- package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +50 -49
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +296 -9
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +298 -238
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +81 -60
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +94 -73
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +5 -3
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +141 -36
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +126 -126
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +177 -168
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +32 -4
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +255 -1
- package/node_modules/aws-sdk/clients/apprunner.d.ts +6 -1
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +291 -2
- package/node_modules/aws-sdk/clients/codedeploy.d.ts +34 -34
- package/node_modules/aws-sdk/clients/connect.d.ts +64 -6
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +40 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +21 -0
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +36 -36
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +95 -1
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +2 -2
- package/node_modules/aws-sdk/clients/quicksight.d.ts +7 -3
- package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ssm.d.ts +7 -7
- package/node_modules/aws-sdk/clients/wafv2.d.ts +42 -32
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +395 -301
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +80 -80
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +38 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/xml2js/node_modules/sax/LICENSE +2 -2
- package/node_modules/xml2js/node_modules/sax/lib/sax.js +13 -4
- package/node_modules/xml2js/node_modules/sax/package.json +8 -4
- package/package.json +3 -3
@@ -1271,9 +1271,18 @@ export namespace DocumentClient {
|
|
1271
1271
|
* The number of items exported.
|
1272
1272
|
*/
|
1273
1273
|
ItemCount?: ItemCount;
|
1274
|
+
/**
|
1275
|
+
* Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT. If INCREMENTAL_EXPORT is provided, the IncrementalExportSpecification must also be used.
|
1276
|
+
*/
|
1277
|
+
ExportType?: ExportType;
|
1278
|
+
/**
|
1279
|
+
* Optional object containing the parameters specific to an incremental export.
|
1280
|
+
*/
|
1281
|
+
IncrementalExportSpecification?: IncrementalExportSpecification;
|
1274
1282
|
}
|
1275
1283
|
export type ExportEndTime = Date;
|
1276
1284
|
export type ExportFormat = "DYNAMODB_JSON"|"ION"|string;
|
1285
|
+
export type ExportFromTime = Date;
|
1277
1286
|
export type ExportManifest = string;
|
1278
1287
|
export type ExportNextToken = string;
|
1279
1288
|
export type ExportStartTime = Date;
|
@@ -1288,6 +1297,10 @@ export namespace DocumentClient {
|
|
1288
1297
|
* Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
|
1289
1298
|
*/
|
1290
1299
|
ExportStatus?: ExportStatus;
|
1300
|
+
/**
|
1301
|
+
* Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT. If INCREMENTAL_EXPORT is provided, the IncrementalExportSpecification must also be used.
|
1302
|
+
*/
|
1303
|
+
ExportType?: ExportType;
|
1291
1304
|
}
|
1292
1305
|
export interface ExportTableToPointInTimeInput {
|
1293
1306
|
/**
|
@@ -1326,6 +1339,14 @@ export namespace DocumentClient {
|
|
1326
1339
|
* The format for the exported data. Valid values for ExportFormat are DYNAMODB_JSON or ION.
|
1327
1340
|
*/
|
1328
1341
|
ExportFormat?: ExportFormat;
|
1342
|
+
/**
|
1343
|
+
* Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT. If INCREMENTAL_EXPORT is provided, the IncrementalExportSpecification must also be used.
|
1344
|
+
*/
|
1345
|
+
ExportType?: ExportType;
|
1346
|
+
/**
|
1347
|
+
* Optional object containing the parameters specific to an incremental export.
|
1348
|
+
*/
|
1349
|
+
IncrementalExportSpecification?: IncrementalExportSpecification;
|
1329
1350
|
}
|
1330
1351
|
export interface ExportTableToPointInTimeOutput {
|
1331
1352
|
/**
|
@@ -1334,6 +1355,9 @@ export namespace DocumentClient {
|
|
1334
1355
|
ExportDescription?: ExportDescription;
|
1335
1356
|
}
|
1336
1357
|
export type ExportTime = Date;
|
1358
|
+
export type ExportToTime = Date;
|
1359
|
+
export type ExportType = "FULL_EXPORT"|"INCREMENTAL_EXPORT"|string;
|
1360
|
+
export type ExportViewType = "NEW_IMAGE"|"NEW_AND_OLD_IMAGES"|string;
|
1337
1361
|
export type ExpressionAttributeNameMap = {[key: string]: AttributeName};
|
1338
1362
|
export type ExpressionAttributeNameVariable = string;
|
1339
1363
|
export type ExpressionAttributeValueMap = {[key: string]: AttributeValue};
|
@@ -1707,6 +1731,20 @@ export namespace DocumentClient {
|
|
1707
1731
|
ImportTableDescription: ImportTableDescription;
|
1708
1732
|
}
|
1709
1733
|
export type ImportedItemCount = number;
|
1734
|
+
export interface IncrementalExportSpecification {
|
1735
|
+
/**
|
1736
|
+
* Time in the past which provides the inclusive start range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state including and after this point in time.
|
1737
|
+
*/
|
1738
|
+
ExportFromTime?: ExportFromTime;
|
1739
|
+
/**
|
1740
|
+
* Time in the past which provides the exclusive end range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state just prior to this point in time. If this is not provided, the latest time with data available will be used.
|
1741
|
+
*/
|
1742
|
+
ExportToTime?: ExportToTime;
|
1743
|
+
/**
|
1744
|
+
* Choice of whether to output the previous item image prior to the start time of the incremental export. Valid values are NEW_AND_OLD_IMAGES and NEW_IMAGES.
|
1745
|
+
*/
|
1746
|
+
ExportViewType?: ExportViewType;
|
1747
|
+
}
|
1710
1748
|
export type IndexName = string;
|
1711
1749
|
export type IndexStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|string;
|
1712
1750
|
export type InputCompressionType = "GZIP"|"ZSTD"|"NONE"|string;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
The ISC License
|
2
2
|
|
3
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
3
|
+
Copyright (c) 2010-2022 Isaac Z. Schlueter and Contributors
|
4
4
|
|
5
5
|
Permission to use, copy, modify, and/or distribute this software for any
|
6
6
|
purpose with or without fee is hereby granted, provided that the above
|
@@ -19,7 +19,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
19
19
|
`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
|
20
20
|
License, as follows:
|
21
21
|
|
22
|
-
|
22
|
+
Copyright (c) 2010-2022 Mathias Bynens <https://mathiasbynens.be/>
|
23
23
|
|
24
24
|
Permission is hereby granted, free of charge, to any person obtaining
|
25
25
|
a copy of this software and associated documentation files (the
|
@@ -164,6 +164,7 @@
|
|
164
164
|
} catch (ex) {
|
165
165
|
Stream = function () {}
|
166
166
|
}
|
167
|
+
if (!Stream) Stream = function () {}
|
167
168
|
|
168
169
|
var streamWraps = sax.EVENTS.filter(function (ev) {
|
169
170
|
return ev !== 'error' && ev !== 'end'
|
@@ -1482,9 +1483,16 @@
|
|
1482
1483
|
}
|
1483
1484
|
|
1484
1485
|
if (c === ';') {
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1486
|
+
if (parser.opt.unparsedEntities) {
|
1487
|
+
var parsedEntity = parseEntity(parser)
|
1488
|
+
parser.entity = ''
|
1489
|
+
parser.state = returnState
|
1490
|
+
parser.write(parsedEntity)
|
1491
|
+
} else {
|
1492
|
+
parser[buffer] += parseEntity(parser)
|
1493
|
+
parser.entity = ''
|
1494
|
+
parser.state = returnState
|
1495
|
+
}
|
1488
1496
|
} else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {
|
1489
1497
|
parser.entity += c
|
1490
1498
|
} else {
|
@@ -1496,8 +1504,9 @@
|
|
1496
1504
|
|
1497
1505
|
continue
|
1498
1506
|
|
1499
|
-
default:
|
1507
|
+
default: /* istanbul ignore next */ {
|
1500
1508
|
throw new Error(parser, 'Unknown state: ' + parser.state)
|
1509
|
+
}
|
1501
1510
|
}
|
1502
1511
|
} // while
|
1503
1512
|
|
@@ -2,12 +2,11 @@
|
|
2
2
|
"name": "sax",
|
3
3
|
"description": "An evented streaming XML parser in JavaScript",
|
4
4
|
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
5
|
-
"version": "1.
|
5
|
+
"version": "1.3.0",
|
6
6
|
"main": "lib/sax.js",
|
7
7
|
"license": "ISC",
|
8
8
|
"scripts": {
|
9
9
|
"test": "tap test/*.js --cov -j4",
|
10
|
-
"posttest": "standard -F test/*.js lib/*.js",
|
11
10
|
"preversion": "npm test",
|
12
11
|
"postversion": "npm publish",
|
13
12
|
"postpublish": "git push origin --all; git push origin --tags"
|
@@ -19,7 +18,12 @@
|
|
19
18
|
"README.md"
|
20
19
|
],
|
21
20
|
"devDependencies": {
|
22
|
-
"
|
23
|
-
|
21
|
+
"tap": "^15.1.6"
|
22
|
+
},
|
23
|
+
"tap": {
|
24
|
+
"statements": 79,
|
25
|
+
"branches": 75,
|
26
|
+
"functions": 80,
|
27
|
+
"lines": 79
|
24
28
|
}
|
25
29
|
}
|
package/package.json
CHANGED
@@ -58,7 +58,7 @@
|
|
58
58
|
"jsii-pacmak": "^1.89.0",
|
59
59
|
"jsii-rosetta": "1.x",
|
60
60
|
"npm-check-updates": "^16",
|
61
|
-
"projen": "^0.73.
|
61
|
+
"projen": "^0.73.33",
|
62
62
|
"source-map-support": "^0.5.21",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
@@ -70,7 +70,7 @@
|
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"aws-cdk-lib": "^2.95.0",
|
73
|
-
"aws-sdk": "^2.
|
73
|
+
"aws-sdk": "^2.1465.0",
|
74
74
|
"constructs": "^10.0.5"
|
75
75
|
},
|
76
76
|
"bundledDependencies": [
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.250",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|