cdk-docker-image-deployment 0.0.131 → 0.0.133
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.examples.json +5 -0
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +1927 -0
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.paginators.json +46 -0
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +131 -114
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +0 -10
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +131 -99
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/secretsmanager-2017-10-17.examples.json +1 -0
- 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/cleanrooms.d.ts +1828 -0
- package/node_modules/aws-sdk/clients/cleanrooms.js +19 -0
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +17 -17
- package/node_modules/aws-sdk/clients/kendra.d.ts +7 -7
- package/node_modules/aws-sdk/clients/lambda.d.ts +32 -13
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +44 -5
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +19 -10
- 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 +51 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +137 -127
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +41 -41
- 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 +8 -8
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"LastChangedDate": 1523477145.729,
|
|
101
101
|
"LastRotatedDate": 1525747253.72,
|
|
102
102
|
"Name": "MyTestDatabaseSecret",
|
|
103
|
+
"NextRotationDate": "1665165599",
|
|
103
104
|
"RotationEnabled": true,
|
|
104
105
|
"RotationLambdaARN": "arn:aws:lambda:us-west-2:123456789012:function:MyTestRotationLambda",
|
|
105
106
|
"RotationRules": {
|
|
@@ -336,3 +336,4 @@ export import SageMakerMetrics = require('./sagemakermetrics');
|
|
|
336
336
|
export import KinesisVideoWebRTCStorage = require('./kinesisvideowebrtcstorage');
|
|
337
337
|
export import LicenseManagerLinuxSubscriptions = require('./licensemanagerlinuxsubscriptions');
|
|
338
338
|
export import KendraRanking = require('./kendraranking');
|
|
339
|
+
export import CleanRooms = require('./cleanrooms');
|
|
@@ -337,5 +337,6 @@ module.exports = {
|
|
|
337
337
|
SageMakerMetrics: require('./sagemakermetrics'),
|
|
338
338
|
KinesisVideoWebRTCStorage: require('./kinesisvideowebrtcstorage'),
|
|
339
339
|
LicenseManagerLinuxSubscriptions: require('./licensemanagerlinuxsubscriptions'),
|
|
340
|
-
KendraRanking: require('./kendraranking')
|
|
340
|
+
KendraRanking: require('./kendraranking'),
|
|
341
|
+
CleanRooms: require('./cleanrooms')
|
|
341
342
|
};
|