cdk-comprehend-s3olap 2.0.64 → 2.0.65
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 +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.min.json +522 -0
- package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.paginators.json +14 -0
- package/node_modules/aws-sdk/apis/metadata.json +6 -0
- package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.examples.json +5 -0
- package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.min.json +1058 -0
- package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.paginators.json +34 -0
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/backupstorage.d.ts +469 -0
- package/node_modules/aws-sdk/clients/backupstorage.js +18 -0
- package/node_modules/aws-sdk/clients/privatenetworks.d.ts +1092 -0
- package/node_modules/aws-sdk/clients/privatenetworks.js +18 -0
- 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 +78 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +9 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +33 -33
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -312,6 +312,8 @@ export abstract class ConfigurationServicePlaceholders {
|
|
312
312
|
redshiftserverless?: AWS.RedshiftServerless.Types.ClientConfiguration;
|
313
313
|
rolesanywhere?: AWS.RolesAnywhere.Types.ClientConfiguration;
|
314
314
|
licensemanagerusersubscriptions?: AWS.LicenseManagerUserSubscriptions.Types.ClientConfiguration;
|
315
|
+
backupstorage?: AWS.BackupStorage.Types.ClientConfiguration;
|
316
|
+
privatenetworks?: AWS.PrivateNetworks.Types.ClientConfiguration;
|
315
317
|
}
|
316
318
|
export interface ConfigurationServiceApiVersions {
|
317
319
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -626,4 +628,6 @@ export interface ConfigurationServiceApiVersions {
|
|
626
628
|
redshiftserverless?: AWS.RedshiftServerless.Types.apiVersion;
|
627
629
|
rolesanywhere?: AWS.RolesAnywhere.Types.apiVersion;
|
628
630
|
licensemanagerusersubscriptions?: AWS.LicenseManagerUserSubscriptions.Types.apiVersion;
|
631
|
+
backupstorage?: AWS.BackupStorage.Types.apiVersion;
|
632
|
+
privatenetworks?: AWS.PrivateNetworks.Types.apiVersion;
|
629
633
|
}
|
package/package.json
CHANGED
@@ -70,7 +70,7 @@
|
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"aws-cdk-lib": "^2.37.1",
|
73
|
-
"aws-sdk": "^2.
|
73
|
+
"aws-sdk": "^2.1193.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
75
|
"esbuild": "^0.15.1"
|
76
76
|
},
|
@@ -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.65",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|