cdk-lambda-subminute 2.0.305 → 2.0.307
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 +14 -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/kinesis-2013-12-02.min.json +92 -21
- 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/apis/s3control-2018-08-20.min.json +112 -84
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +544 -533
- 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/kinesis.d.ts +96 -42
- package/node_modules/aws-sdk/clients/s3.d.ts +38 -15
- package/node_modules/aws-sdk/clients/s3control.d.ts +35 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +13 -2
- 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 +89 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +601 -225
- 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/lib/services/s3.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -4
@@ -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",
|
@@ -83,6 +83,26 @@
|
|
83
83
|
}
|
84
84
|
}
|
85
85
|
},
|
86
|
+
"DeleteResourcePolicy": {
|
87
|
+
"input": {
|
88
|
+
"type": "structure",
|
89
|
+
"required": [
|
90
|
+
"ResourceARN"
|
91
|
+
],
|
92
|
+
"members": {
|
93
|
+
"ResourceARN": {
|
94
|
+
"contextParam": {
|
95
|
+
"name": "ResourceARN"
|
96
|
+
}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
},
|
100
|
+
"staticContextParams": {
|
101
|
+
"OperationType": {
|
102
|
+
"value": "control"
|
103
|
+
}
|
104
|
+
}
|
105
|
+
},
|
86
106
|
"DeleteStream": {
|
87
107
|
"input": {
|
88
108
|
"type": "structure",
|
@@ -198,7 +218,7 @@
|
|
198
218
|
"shape": "S9"
|
199
219
|
},
|
200
220
|
"Shards": {
|
201
|
-
"shape": "
|
221
|
+
"shape": "Sv"
|
202
222
|
},
|
203
223
|
"HasMoreShards": {
|
204
224
|
"type": "boolean"
|
@@ -210,7 +230,7 @@
|
|
210
230
|
"type": "timestamp"
|
211
231
|
},
|
212
232
|
"EnhancedMonitoring": {
|
213
|
-
"shape": "
|
233
|
+
"shape": "S12"
|
214
234
|
},
|
215
235
|
"EncryptionType": {},
|
216
236
|
"KeyId": {}
|
@@ -317,7 +337,7 @@
|
|
317
337
|
"type": "timestamp"
|
318
338
|
},
|
319
339
|
"EnhancedMonitoring": {
|
320
|
-
"shape": "
|
340
|
+
"shape": "S12"
|
321
341
|
},
|
322
342
|
"EncryptionType": {},
|
323
343
|
"KeyId": {},
|
@@ -346,7 +366,7 @@
|
|
346
366
|
"members": {
|
347
367
|
"StreamName": {},
|
348
368
|
"ShardLevelMetrics": {
|
349
|
-
"shape": "
|
369
|
+
"shape": "S14"
|
350
370
|
},
|
351
371
|
"StreamARN": {
|
352
372
|
"contextParam": {
|
@@ -356,7 +376,7 @@
|
|
356
376
|
}
|
357
377
|
},
|
358
378
|
"output": {
|
359
|
-
"shape": "
|
379
|
+
"shape": "S1h"
|
360
380
|
},
|
361
381
|
"staticContextParams": {
|
362
382
|
"OperationType": {
|
@@ -373,7 +393,7 @@
|
|
373
393
|
"members": {
|
374
394
|
"StreamName": {},
|
375
395
|
"ShardLevelMetrics": {
|
376
|
-
"shape": "
|
396
|
+
"shape": "S14"
|
377
397
|
},
|
378
398
|
"StreamARN": {
|
379
399
|
"contextParam": {
|
@@ -383,7 +403,7 @@
|
|
383
403
|
}
|
384
404
|
},
|
385
405
|
"output": {
|
386
|
-
"shape": "
|
406
|
+
"shape": "S1h"
|
387
407
|
},
|
388
408
|
"staticContextParams": {
|
389
409
|
"OperationType": {
|
@@ -457,7 +477,7 @@
|
|
457
477
|
"member": {}
|
458
478
|
},
|
459
479
|
"HashKeyRange": {
|
460
|
-
"shape": "
|
480
|
+
"shape": "Sx"
|
461
481
|
}
|
462
482
|
}
|
463
483
|
}
|
@@ -470,6 +490,35 @@
|
|
470
490
|
}
|
471
491
|
}
|
472
492
|
},
|
493
|
+
"GetResourcePolicy": {
|
494
|
+
"input": {
|
495
|
+
"type": "structure",
|
496
|
+
"required": [
|
497
|
+
"ResourceARN"
|
498
|
+
],
|
499
|
+
"members": {
|
500
|
+
"ResourceARN": {
|
501
|
+
"contextParam": {
|
502
|
+
"name": "ResourceARN"
|
503
|
+
}
|
504
|
+
}
|
505
|
+
}
|
506
|
+
},
|
507
|
+
"output": {
|
508
|
+
"type": "structure",
|
509
|
+
"required": [
|
510
|
+
"Policy"
|
511
|
+
],
|
512
|
+
"members": {
|
513
|
+
"Policy": {}
|
514
|
+
}
|
515
|
+
},
|
516
|
+
"staticContextParams": {
|
517
|
+
"OperationType": {
|
518
|
+
"value": "control"
|
519
|
+
}
|
520
|
+
}
|
521
|
+
},
|
473
522
|
"GetShardIterator": {
|
474
523
|
"input": {
|
475
524
|
"type": "structure",
|
@@ -565,7 +614,7 @@
|
|
565
614
|
"type": "structure",
|
566
615
|
"members": {
|
567
616
|
"Shards": {
|
568
|
-
"shape": "
|
617
|
+
"shape": "Sv"
|
569
618
|
},
|
570
619
|
"NextToken": {}
|
571
620
|
}
|
@@ -603,7 +652,7 @@
|
|
603
652
|
"Consumers": {
|
604
653
|
"type": "list",
|
605
654
|
"member": {
|
606
|
-
"shape": "
|
655
|
+
"shape": "S2c"
|
607
656
|
}
|
608
657
|
},
|
609
658
|
"NextToken": {}
|
@@ -839,6 +888,28 @@
|
|
839
888
|
}
|
840
889
|
}
|
841
890
|
},
|
891
|
+
"PutResourcePolicy": {
|
892
|
+
"input": {
|
893
|
+
"type": "structure",
|
894
|
+
"required": [
|
895
|
+
"ResourceARN",
|
896
|
+
"Policy"
|
897
|
+
],
|
898
|
+
"members": {
|
899
|
+
"ResourceARN": {
|
900
|
+
"contextParam": {
|
901
|
+
"name": "ResourceARN"
|
902
|
+
}
|
903
|
+
},
|
904
|
+
"Policy": {}
|
905
|
+
}
|
906
|
+
},
|
907
|
+
"staticContextParams": {
|
908
|
+
"OperationType": {
|
909
|
+
"value": "control"
|
910
|
+
}
|
911
|
+
}
|
912
|
+
},
|
842
913
|
"RegisterStreamConsumer": {
|
843
914
|
"input": {
|
844
915
|
"type": "structure",
|
@@ -862,7 +933,7 @@
|
|
862
933
|
],
|
863
934
|
"members": {
|
864
935
|
"Consumer": {
|
865
|
-
"shape": "
|
936
|
+
"shape": "S2c"
|
866
937
|
}
|
867
938
|
}
|
868
939
|
},
|
@@ -1043,7 +1114,7 @@
|
|
1043
1114
|
"StreamMode": {}
|
1044
1115
|
}
|
1045
1116
|
},
|
1046
|
-
"
|
1117
|
+
"Sv": {
|
1047
1118
|
"type": "list",
|
1048
1119
|
"member": {
|
1049
1120
|
"type": "structure",
|
@@ -1057,7 +1128,7 @@
|
|
1057
1128
|
"ParentShardId": {},
|
1058
1129
|
"AdjacentParentShardId": {},
|
1059
1130
|
"HashKeyRange": {
|
1060
|
-
"shape": "
|
1131
|
+
"shape": "Sx"
|
1061
1132
|
},
|
1062
1133
|
"SequenceNumberRange": {
|
1063
1134
|
"type": "structure",
|
@@ -1072,7 +1143,7 @@
|
|
1072
1143
|
}
|
1073
1144
|
}
|
1074
1145
|
},
|
1075
|
-
"
|
1146
|
+
"Sx": {
|
1076
1147
|
"type": "structure",
|
1077
1148
|
"required": [
|
1078
1149
|
"StartingHashKey",
|
@@ -1083,35 +1154,35 @@
|
|
1083
1154
|
"EndingHashKey": {}
|
1084
1155
|
}
|
1085
1156
|
},
|
1086
|
-
"
|
1157
|
+
"S12": {
|
1087
1158
|
"type": "list",
|
1088
1159
|
"member": {
|
1089
1160
|
"type": "structure",
|
1090
1161
|
"members": {
|
1091
1162
|
"ShardLevelMetrics": {
|
1092
|
-
"shape": "
|
1163
|
+
"shape": "S14"
|
1093
1164
|
}
|
1094
1165
|
}
|
1095
1166
|
}
|
1096
1167
|
},
|
1097
|
-
"
|
1168
|
+
"S14": {
|
1098
1169
|
"type": "list",
|
1099
1170
|
"member": {}
|
1100
1171
|
},
|
1101
|
-
"
|
1172
|
+
"S1h": {
|
1102
1173
|
"type": "structure",
|
1103
1174
|
"members": {
|
1104
1175
|
"StreamName": {},
|
1105
1176
|
"CurrentShardLevelMetrics": {
|
1106
|
-
"shape": "
|
1177
|
+
"shape": "S14"
|
1107
1178
|
},
|
1108
1179
|
"DesiredShardLevelMetrics": {
|
1109
|
-
"shape": "
|
1180
|
+
"shape": "S14"
|
1110
1181
|
},
|
1111
1182
|
"StreamARN": {}
|
1112
1183
|
}
|
1113
1184
|
},
|
1114
|
-
"
|
1185
|
+
"S2c": {
|
1115
1186
|
"type": "structure",
|
1116
1187
|
"required": [
|
1117
1188
|
"ConsumerName",
|
@@ -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
|
}
|