cdk-lambda-subminute 2.0.305 → 2.0.306
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.examples.json +251 -0
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +349 -106
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +5 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.min.json +359 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.examples.json +174 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.min.json +51 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +989 -176
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +729 -131
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/metadata.json +8 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +152 -152
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +109 -92
- 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/cloudfront.d.ts +220 -2
- package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.d.ts +294 -0
- package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.js +18 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +12 -12
- package/node_modules/aws-sdk/clients/inspectorscan.d.ts +59 -0
- package/node_modules/aws-sdk/clients/inspectorscan.js +18 -0
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +1080 -179
- package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +666 -9
- package/node_modules/aws-sdk/clients/s3.d.ts +38 -15
- 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 +85 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +508 -203
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -92
- 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
@@ -20,11 +20,26 @@
|
|
20
20
|
"output_token": "nextToken",
|
21
21
|
"limit_key": "maxResults"
|
22
22
|
},
|
23
|
+
"ListComponents": {
|
24
|
+
"input_token": "nextToken",
|
25
|
+
"output_token": "nextToken",
|
26
|
+
"limit_key": "maxResults"
|
27
|
+
},
|
23
28
|
"ListEntities": {
|
24
29
|
"input_token": "nextToken",
|
25
30
|
"output_token": "nextToken",
|
26
31
|
"limit_key": "maxResults"
|
27
32
|
},
|
33
|
+
"ListMetadataTransferJobs": {
|
34
|
+
"input_token": "nextToken",
|
35
|
+
"output_token": "nextToken",
|
36
|
+
"limit_key": "maxResults"
|
37
|
+
},
|
38
|
+
"ListProperties": {
|
39
|
+
"input_token": "nextToken",
|
40
|
+
"output_token": "nextToken",
|
41
|
+
"limit_key": "maxResults"
|
42
|
+
},
|
28
43
|
"ListScenes": {
|
29
44
|
"input_token": "nextToken",
|
30
45
|
"output_token": "nextToken",
|
@@ -1346,5 +1346,13 @@
|
|
1346
1346
|
},
|
1347
1347
|
"trustedadvisor": {
|
1348
1348
|
"name": "TrustedAdvisor"
|
1349
|
+
},
|
1350
|
+
"cloudfrontkeyvaluestore": {
|
1351
|
+
"prefix": "cloudfront-keyvaluestore",
|
1352
|
+
"name": "CloudFrontKeyValueStore"
|
1353
|
+
},
|
1354
|
+
"inspectorscan": {
|
1355
|
+
"prefix": "inspector-scan",
|
1356
|
+
"name": "InspectorScan"
|
1349
1357
|
}
|
1350
1358
|
}
|