cdk-comprehend-s3olap 2.0.159 → 2.0.160
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 +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +7 -1
- package/node_modules/aws-sdk/README.md +3 -4
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +4 -1
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.min.json +1346 -0
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.examples.json +19 -0
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +38 -13
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/backup.d.ts +16 -4
- package/node_modules/aws-sdk/clients/connectcases.d.ts +1 -1
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +1363 -0
- package/node_modules/aws-sdk/clients/mediapackagev2.js +19 -0
- package/node_modules/aws-sdk/clients/sesv2.d.ts +24 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +50 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +9 -9
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -345,6 +345,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
345
345
|
ivsrealtime?: AWS.IVSRealTime.Types.ClientConfiguration;
|
346
346
|
vpclattice?: AWS.VPCLattice.Types.ClientConfiguration;
|
347
347
|
osis?: AWS.OSIS.Types.ClientConfiguration;
|
348
|
+
mediapackagev2?: AWS.MediaPackageV2.Types.ClientConfiguration;
|
348
349
|
}
|
349
350
|
export interface ConfigurationServiceApiVersions {
|
350
351
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -692,4 +693,5 @@ export interface ConfigurationServiceApiVersions {
|
|
692
693
|
ivsrealtime?: AWS.IVSRealTime.Types.apiVersion;
|
693
694
|
vpclattice?: AWS.VPCLattice.Types.apiVersion;
|
694
695
|
osis?: AWS.OSIS.Types.apiVersion;
|
696
|
+
mediapackagev2?: AWS.MediaPackageV2.Types.apiVersion;
|
695
697
|
}
|
package/package.json
CHANGED
@@ -57,7 +57,7 @@
|
|
57
57
|
"jsii-docgen": "^1.8.110",
|
58
58
|
"jsii-pacmak": "^1.81.0",
|
59
59
|
"npm-check-updates": "^16",
|
60
|
-
"projen": "^0.71.
|
60
|
+
"projen": "^0.71.64",
|
61
61
|
"standard-version": "^9",
|
62
62
|
"ts-jest": "^27",
|
63
63
|
"typescript": "^4.9.5"
|
@@ -68,7 +68,7 @@
|
|
68
68
|
},
|
69
69
|
"dependencies": {
|
70
70
|
"aws-cdk-lib": "^2.79.1",
|
71
|
-
"aws-sdk": "^2.
|
71
|
+
"aws-sdk": "^2.1381.0",
|
72
72
|
"constructs": "^10.0.5",
|
73
73
|
"esbuild": "^0.17.19"
|
74
74
|
},
|
@@ -77,8 +77,8 @@
|
|
77
77
|
"esbuild"
|
78
78
|
],
|
79
79
|
"resolutions": {
|
80
|
-
"@types/prettier": "2.6.0",
|
81
80
|
"@types/babel__traverse": "7.18.2",
|
81
|
+
"@types/prettier": "2.6.0",
|
82
82
|
"got": "12.3.0"
|
83
83
|
},
|
84
84
|
"keywords": [
|
@@ -95,7 +95,7 @@
|
|
95
95
|
],
|
96
96
|
"main": "lib/index.js",
|
97
97
|
"license": "Apache-2.0",
|
98
|
-
"version": "2.0.
|
98
|
+
"version": "2.0.160",
|
99
99
|
"jest": {
|
100
100
|
"testMatch": [
|
101
101
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|