aws-sdk 2.1400.0 → 2.1402.0
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/CHANGELOG.md +16 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +19 -0
- package/apis/ec2-2016-11-15.min.json +1389 -1370
- package/apis/elasticmapreduce-2009-03-31.min.json +56 -3
- package/apis/elasticmapreduce-2009-03-31.paginators.json +4 -0
- package/apis/inspector2-2020-06-08.min.json +529 -150
- package/apis/mediaconvert-2017-08-29.min.json +103 -93
- package/apis/mq-2017-11-27.min.json +132 -32
- package/apis/redshift-2012-12-01.min.json +232 -125
- package/apis/redshift-2012-12-01.paginators.json +6 -0
- package/apis/sagemaker-2017-07-24.min.json +995 -973
- package/apis/transfer-2018-11-05.min.json +44 -31
- package/clients/appflow.d.ts +32 -0
- package/clients/configservice.d.ts +1 -1
- package/clients/dynamodb.d.ts +2 -2
- package/clients/ec2.d.ts +32 -20
- package/clients/emr.d.ts +77 -1
- package/clients/inspector2.d.ts +417 -9
- package/clients/mediaconvert.d.ts +11 -2
- package/clients/mq.d.ts +136 -30
- package/clients/redshift.d.ts +189 -11
- package/clients/sagemaker.d.ts +45 -13
- package/clients/transfer.d.ts +13 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +1690 -1501
- package/dist/aws-sdk.min.js +74 -74
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -82,6 +82,9 @@
|
|
82
82
|
},
|
83
83
|
"lambda": {
|
84
84
|
"shape": "Sa"
|
85
|
+
},
|
86
|
+
"lambdaCode": {
|
87
|
+
"shape": "Sa"
|
85
88
|
}
|
86
89
|
}
|
87
90
|
},
|
@@ -97,6 +100,86 @@
|
|
97
100
|
}
|
98
101
|
}
|
99
102
|
},
|
103
|
+
"BatchGetCodeSnippet": {
|
104
|
+
"http": {
|
105
|
+
"requestUri": "/codesnippet/batchget",
|
106
|
+
"responseCode": 200
|
107
|
+
},
|
108
|
+
"input": {
|
109
|
+
"type": "structure",
|
110
|
+
"required": [
|
111
|
+
"findingArns"
|
112
|
+
],
|
113
|
+
"members": {
|
114
|
+
"findingArns": {
|
115
|
+
"type": "list",
|
116
|
+
"member": {}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
"output": {
|
121
|
+
"type": "structure",
|
122
|
+
"members": {
|
123
|
+
"codeSnippetResults": {
|
124
|
+
"type": "list",
|
125
|
+
"member": {
|
126
|
+
"type": "structure",
|
127
|
+
"members": {
|
128
|
+
"codeSnippet": {
|
129
|
+
"type": "list",
|
130
|
+
"member": {
|
131
|
+
"type": "structure",
|
132
|
+
"required": [
|
133
|
+
"content",
|
134
|
+
"lineNumber"
|
135
|
+
],
|
136
|
+
"members": {
|
137
|
+
"content": {},
|
138
|
+
"lineNumber": {
|
139
|
+
"type": "integer"
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|
143
|
+
},
|
144
|
+
"endLine": {
|
145
|
+
"type": "integer"
|
146
|
+
},
|
147
|
+
"findingArn": {},
|
148
|
+
"startLine": {
|
149
|
+
"type": "integer"
|
150
|
+
},
|
151
|
+
"suggestedFixes": {
|
152
|
+
"type": "list",
|
153
|
+
"member": {
|
154
|
+
"type": "structure",
|
155
|
+
"members": {
|
156
|
+
"code": {},
|
157
|
+
"description": {}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
},
|
164
|
+
"errors": {
|
165
|
+
"type": "list",
|
166
|
+
"member": {
|
167
|
+
"type": "structure",
|
168
|
+
"required": [
|
169
|
+
"errorCode",
|
170
|
+
"errorMessage",
|
171
|
+
"findingArn"
|
172
|
+
],
|
173
|
+
"members": {
|
174
|
+
"errorCode": {},
|
175
|
+
"errorMessage": {},
|
176
|
+
"findingArn": {}
|
177
|
+
}
|
178
|
+
}
|
179
|
+
}
|
180
|
+
}
|
181
|
+
}
|
182
|
+
},
|
100
183
|
"BatchGetFreeTrialInfo": {
|
101
184
|
"http": {
|
102
185
|
"requestUri": "/freetrialinfo/batchget",
|
@@ -192,10 +275,10 @@
|
|
192
275
|
"type": "structure",
|
193
276
|
"members": {
|
194
277
|
"accountIds": {
|
195
|
-
"shape": "
|
278
|
+
"shape": "S1f"
|
196
279
|
},
|
197
280
|
"failedAccountIds": {
|
198
|
-
"shape": "
|
281
|
+
"shape": "S1i"
|
199
282
|
}
|
200
283
|
}
|
201
284
|
}
|
@@ -233,10 +316,10 @@
|
|
233
316
|
"type": "structure",
|
234
317
|
"members": {
|
235
318
|
"accountIds": {
|
236
|
-
"shape": "
|
319
|
+
"shape": "S1f"
|
237
320
|
},
|
238
321
|
"failedAccountIds": {
|
239
|
-
"shape": "
|
322
|
+
"shape": "S1i"
|
240
323
|
}
|
241
324
|
}
|
242
325
|
}
|
@@ -265,6 +348,28 @@
|
|
265
348
|
}
|
266
349
|
}
|
267
350
|
},
|
351
|
+
"CancelSbomExport": {
|
352
|
+
"http": {
|
353
|
+
"requestUri": "/sbomexport/cancel",
|
354
|
+
"responseCode": 200
|
355
|
+
},
|
356
|
+
"input": {
|
357
|
+
"type": "structure",
|
358
|
+
"required": [
|
359
|
+
"reportId"
|
360
|
+
],
|
361
|
+
"members": {
|
362
|
+
"reportId": {}
|
363
|
+
}
|
364
|
+
},
|
365
|
+
"output": {
|
366
|
+
"type": "structure",
|
367
|
+
"members": {
|
368
|
+
"reportId": {}
|
369
|
+
}
|
370
|
+
},
|
371
|
+
"idempotent": true
|
372
|
+
},
|
268
373
|
"CreateFilter": {
|
269
374
|
"http": {
|
270
375
|
"requestUri": "/filters/create",
|
@@ -281,12 +386,12 @@
|
|
281
386
|
"action": {},
|
282
387
|
"description": {},
|
283
388
|
"filterCriteria": {
|
284
|
-
"shape": "
|
389
|
+
"shape": "S1x"
|
285
390
|
},
|
286
391
|
"name": {},
|
287
392
|
"reason": {},
|
288
393
|
"tags": {
|
289
|
-
"shape": "
|
394
|
+
"shape": "S2j"
|
290
395
|
}
|
291
396
|
}
|
292
397
|
},
|
@@ -313,11 +418,11 @@
|
|
313
418
|
],
|
314
419
|
"members": {
|
315
420
|
"filterCriteria": {
|
316
|
-
"shape": "
|
421
|
+
"shape": "S1x"
|
317
422
|
},
|
318
423
|
"reportFormat": {},
|
319
424
|
"s3Destination": {
|
320
|
-
"shape": "
|
425
|
+
"shape": "S2o"
|
321
426
|
}
|
322
427
|
}
|
323
428
|
},
|
@@ -328,6 +433,35 @@
|
|
328
433
|
}
|
329
434
|
}
|
330
435
|
},
|
436
|
+
"CreateSbomExport": {
|
437
|
+
"http": {
|
438
|
+
"requestUri": "/sbomexport/create",
|
439
|
+
"responseCode": 200
|
440
|
+
},
|
441
|
+
"input": {
|
442
|
+
"type": "structure",
|
443
|
+
"required": [
|
444
|
+
"reportFormat",
|
445
|
+
"s3Destination"
|
446
|
+
],
|
447
|
+
"members": {
|
448
|
+
"reportFormat": {},
|
449
|
+
"resourceFilterCriteria": {
|
450
|
+
"shape": "S2s"
|
451
|
+
},
|
452
|
+
"s3Destination": {
|
453
|
+
"shape": "S2o"
|
454
|
+
}
|
455
|
+
}
|
456
|
+
},
|
457
|
+
"output": {
|
458
|
+
"type": "structure",
|
459
|
+
"members": {
|
460
|
+
"reportId": {}
|
461
|
+
}
|
462
|
+
},
|
463
|
+
"idempotent": true
|
464
|
+
},
|
331
465
|
"DeleteFilter": {
|
332
466
|
"http": {
|
333
467
|
"requestUri": "/filters/delete",
|
@@ -365,7 +499,7 @@
|
|
365
499
|
"type": "structure",
|
366
500
|
"members": {
|
367
501
|
"autoEnable": {
|
368
|
-
"shape": "
|
502
|
+
"shape": "S35"
|
369
503
|
},
|
370
504
|
"maxAccountLimitReached": {
|
371
505
|
"type": "boolean"
|
@@ -397,7 +531,7 @@
|
|
397
531
|
],
|
398
532
|
"members": {
|
399
533
|
"accounts": {
|
400
|
-
"shape": "
|
534
|
+
"shape": "S3a"
|
401
535
|
},
|
402
536
|
"failedAccounts": {
|
403
537
|
"shape": "Se"
|
@@ -483,7 +617,7 @@
|
|
483
617
|
],
|
484
618
|
"members": {
|
485
619
|
"accounts": {
|
486
|
-
"shape": "
|
620
|
+
"shape": "S3a"
|
487
621
|
},
|
488
622
|
"failedAccounts": {
|
489
623
|
"shape": "Se"
|
@@ -584,15 +718,48 @@
|
|
584
718
|
"members": {
|
585
719
|
"errorMessage": {},
|
586
720
|
"orgPackagePaths": {
|
587
|
-
"shape": "
|
721
|
+
"shape": "S3z"
|
588
722
|
},
|
589
723
|
"packagePaths": {
|
590
|
-
"shape": "
|
724
|
+
"shape": "S3z"
|
591
725
|
},
|
592
726
|
"status": {}
|
593
727
|
}
|
594
728
|
}
|
595
729
|
},
|
730
|
+
"GetEncryptionKey": {
|
731
|
+
"http": {
|
732
|
+
"method": "GET",
|
733
|
+
"requestUri": "/encryptionkey/get",
|
734
|
+
"responseCode": 200
|
735
|
+
},
|
736
|
+
"input": {
|
737
|
+
"type": "structure",
|
738
|
+
"required": [
|
739
|
+
"resourceType",
|
740
|
+
"scanType"
|
741
|
+
],
|
742
|
+
"members": {
|
743
|
+
"resourceType": {
|
744
|
+
"location": "querystring",
|
745
|
+
"locationName": "resourceType"
|
746
|
+
},
|
747
|
+
"scanType": {
|
748
|
+
"location": "querystring",
|
749
|
+
"locationName": "scanType"
|
750
|
+
}
|
751
|
+
}
|
752
|
+
},
|
753
|
+
"output": {
|
754
|
+
"type": "structure",
|
755
|
+
"required": [
|
756
|
+
"kmsKeyId"
|
757
|
+
],
|
758
|
+
"members": {
|
759
|
+
"kmsKeyId": {}
|
760
|
+
}
|
761
|
+
}
|
762
|
+
},
|
596
763
|
"GetFindingsReportStatus": {
|
597
764
|
"http": {
|
598
765
|
"requestUri": "/reporting/status/get",
|
@@ -608,12 +775,12 @@
|
|
608
775
|
"type": "structure",
|
609
776
|
"members": {
|
610
777
|
"destination": {
|
611
|
-
"shape": "
|
778
|
+
"shape": "S2o"
|
612
779
|
},
|
613
780
|
"errorCode": {},
|
614
781
|
"errorMessage": {},
|
615
782
|
"filterCriteria": {
|
616
|
-
"shape": "
|
783
|
+
"shape": "S1x"
|
617
784
|
},
|
618
785
|
"reportId": {},
|
619
786
|
"status": {}
|
@@ -638,11 +805,43 @@
|
|
638
805
|
"type": "structure",
|
639
806
|
"members": {
|
640
807
|
"member": {
|
641
|
-
"shape": "
|
808
|
+
"shape": "S4d"
|
642
809
|
}
|
643
810
|
}
|
644
811
|
}
|
645
812
|
},
|
813
|
+
"GetSbomExport": {
|
814
|
+
"http": {
|
815
|
+
"requestUri": "/sbomexport/get",
|
816
|
+
"responseCode": 200
|
817
|
+
},
|
818
|
+
"input": {
|
819
|
+
"type": "structure",
|
820
|
+
"required": [
|
821
|
+
"reportId"
|
822
|
+
],
|
823
|
+
"members": {
|
824
|
+
"reportId": {}
|
825
|
+
}
|
826
|
+
},
|
827
|
+
"output": {
|
828
|
+
"type": "structure",
|
829
|
+
"members": {
|
830
|
+
"errorCode": {},
|
831
|
+
"errorMessage": {},
|
832
|
+
"filterCriteria": {
|
833
|
+
"shape": "S2s"
|
834
|
+
},
|
835
|
+
"format": {},
|
836
|
+
"reportId": {},
|
837
|
+
"s3Destination": {
|
838
|
+
"shape": "S2o"
|
839
|
+
},
|
840
|
+
"status": {}
|
841
|
+
}
|
842
|
+
},
|
843
|
+
"idempotent": true
|
844
|
+
},
|
646
845
|
"ListAccountPermissions": {
|
647
846
|
"http": {
|
648
847
|
"requestUri": "/accountpermissions/list",
|
@@ -691,7 +890,7 @@
|
|
691
890
|
"type": "structure",
|
692
891
|
"members": {
|
693
892
|
"filterCriteria": {
|
694
|
-
"shape": "
|
893
|
+
"shape": "S4p"
|
695
894
|
},
|
696
895
|
"maxResults": {
|
697
896
|
"type": "integer"
|
@@ -727,7 +926,7 @@
|
|
727
926
|
"amiId": {},
|
728
927
|
"platform": {},
|
729
928
|
"tags": {
|
730
|
-
"shape": "
|
929
|
+
"shape": "S2j"
|
731
930
|
}
|
732
931
|
}
|
733
932
|
},
|
@@ -752,7 +951,7 @@
|
|
752
951
|
"members": {
|
753
952
|
"functionName": {},
|
754
953
|
"functionTags": {
|
755
|
-
"shape": "
|
954
|
+
"shape": "S2j"
|
756
955
|
},
|
757
956
|
"layers": {
|
758
957
|
"type": "list",
|
@@ -792,7 +991,7 @@
|
|
792
991
|
"type": "structure",
|
793
992
|
"members": {
|
794
993
|
"filterCriteria": {
|
795
|
-
"shape": "
|
994
|
+
"shape": "S4p"
|
796
995
|
},
|
797
996
|
"groupBy": {},
|
798
997
|
"nextToken": {}
|
@@ -899,14 +1098,14 @@
|
|
899
1098
|
"type": "timestamp"
|
900
1099
|
},
|
901
1100
|
"criteria": {
|
902
|
-
"shape": "
|
1101
|
+
"shape": "S1x"
|
903
1102
|
},
|
904
1103
|
"description": {},
|
905
1104
|
"name": {},
|
906
1105
|
"ownerId": {},
|
907
1106
|
"reason": {},
|
908
1107
|
"tags": {
|
909
|
-
"shape": "
|
1108
|
+
"shape": "S2j"
|
910
1109
|
},
|
911
1110
|
"updatedAt": {
|
912
1111
|
"type": "timestamp"
|
@@ -930,7 +1129,7 @@
|
|
930
1129
|
],
|
931
1130
|
"members": {
|
932
1131
|
"accountIds": {
|
933
|
-
"shape": "
|
1132
|
+
"shape": "S1y"
|
934
1133
|
},
|
935
1134
|
"aggregationRequest": {
|
936
1135
|
"type": "structure",
|
@@ -948,7 +1147,7 @@
|
|
948
1147
|
"type": "structure",
|
949
1148
|
"members": {
|
950
1149
|
"amis": {
|
951
|
-
"shape": "
|
1150
|
+
"shape": "S1y"
|
952
1151
|
},
|
953
1152
|
"sortBy": {},
|
954
1153
|
"sortOrder": {}
|
@@ -958,19 +1157,19 @@
|
|
958
1157
|
"type": "structure",
|
959
1158
|
"members": {
|
960
1159
|
"architectures": {
|
961
|
-
"shape": "
|
1160
|
+
"shape": "S1y"
|
962
1161
|
},
|
963
1162
|
"imageShas": {
|
964
|
-
"shape": "
|
1163
|
+
"shape": "S1y"
|
965
1164
|
},
|
966
1165
|
"imageTags": {
|
967
|
-
"shape": "
|
1166
|
+
"shape": "S1y"
|
968
1167
|
},
|
969
1168
|
"repositories": {
|
970
|
-
"shape": "
|
1169
|
+
"shape": "S1y"
|
971
1170
|
},
|
972
1171
|
"resourceIds": {
|
973
|
-
"shape": "
|
1172
|
+
"shape": "S1y"
|
974
1173
|
},
|
975
1174
|
"sortBy": {},
|
976
1175
|
"sortOrder": {}
|
@@ -980,16 +1179,16 @@
|
|
980
1179
|
"type": "structure",
|
981
1180
|
"members": {
|
982
1181
|
"amis": {
|
983
|
-
"shape": "
|
1182
|
+
"shape": "S1y"
|
984
1183
|
},
|
985
1184
|
"instanceIds": {
|
986
|
-
"shape": "
|
1185
|
+
"shape": "S1y"
|
987
1186
|
},
|
988
1187
|
"instanceTags": {
|
989
|
-
"shape": "
|
1188
|
+
"shape": "S2a"
|
990
1189
|
},
|
991
1190
|
"operatingSystems": {
|
992
|
-
"shape": "
|
1191
|
+
"shape": "S1y"
|
993
1192
|
},
|
994
1193
|
"sortBy": {},
|
995
1194
|
"sortOrder": {}
|
@@ -1008,13 +1207,13 @@
|
|
1008
1207
|
"type": "structure",
|
1009
1208
|
"members": {
|
1010
1209
|
"layerHashes": {
|
1011
|
-
"shape": "
|
1210
|
+
"shape": "S1y"
|
1012
1211
|
},
|
1013
1212
|
"repositories": {
|
1014
|
-
"shape": "
|
1213
|
+
"shape": "S1y"
|
1015
1214
|
},
|
1016
1215
|
"resourceIds": {
|
1017
|
-
"shape": "
|
1216
|
+
"shape": "S1y"
|
1018
1217
|
},
|
1019
1218
|
"sortBy": {},
|
1020
1219
|
"sortOrder": {}
|
@@ -1024,16 +1223,16 @@
|
|
1024
1223
|
"type": "structure",
|
1025
1224
|
"members": {
|
1026
1225
|
"functionNames": {
|
1027
|
-
"shape": "
|
1226
|
+
"shape": "S1y"
|
1028
1227
|
},
|
1029
1228
|
"functionTags": {
|
1030
|
-
"shape": "
|
1229
|
+
"shape": "S2a"
|
1031
1230
|
},
|
1032
1231
|
"resourceIds": {
|
1033
|
-
"shape": "
|
1232
|
+
"shape": "S1y"
|
1034
1233
|
},
|
1035
1234
|
"runtimes": {
|
1036
|
-
"shape": "
|
1235
|
+
"shape": "S1y"
|
1037
1236
|
},
|
1038
1237
|
"sortBy": {},
|
1039
1238
|
"sortOrder": {}
|
@@ -1043,13 +1242,13 @@
|
|
1043
1242
|
"type": "structure",
|
1044
1243
|
"members": {
|
1045
1244
|
"functionNames": {
|
1046
|
-
"shape": "
|
1245
|
+
"shape": "S1y"
|
1047
1246
|
},
|
1048
1247
|
"layerArns": {
|
1049
|
-
"shape": "
|
1248
|
+
"shape": "S1y"
|
1050
1249
|
},
|
1051
1250
|
"resourceIds": {
|
1052
|
-
"shape": "
|
1251
|
+
"shape": "S1y"
|
1053
1252
|
},
|
1054
1253
|
"sortBy": {},
|
1055
1254
|
"sortOrder": {}
|
@@ -1059,7 +1258,7 @@
|
|
1059
1258
|
"type": "structure",
|
1060
1259
|
"members": {
|
1061
1260
|
"packageNames": {
|
1062
|
-
"shape": "
|
1261
|
+
"shape": "S1y"
|
1063
1262
|
},
|
1064
1263
|
"sortBy": {},
|
1065
1264
|
"sortOrder": {}
|
@@ -1069,7 +1268,7 @@
|
|
1069
1268
|
"type": "structure",
|
1070
1269
|
"members": {
|
1071
1270
|
"repositories": {
|
1072
|
-
"shape": "
|
1271
|
+
"shape": "S1y"
|
1073
1272
|
},
|
1074
1273
|
"sortBy": {},
|
1075
1274
|
"sortOrder": {}
|
@@ -1078,14 +1277,15 @@
|
|
1078
1277
|
"titleAggregation": {
|
1079
1278
|
"type": "structure",
|
1080
1279
|
"members": {
|
1280
|
+
"findingType": {},
|
1081
1281
|
"resourceType": {},
|
1082
1282
|
"sortBy": {},
|
1083
1283
|
"sortOrder": {},
|
1084
1284
|
"titles": {
|
1085
|
-
"shape": "
|
1285
|
+
"shape": "S1y"
|
1086
1286
|
},
|
1087
1287
|
"vulnerabilityIds": {
|
1088
|
-
"shape": "
|
1288
|
+
"shape": "S1y"
|
1089
1289
|
}
|
1090
1290
|
}
|
1091
1291
|
}
|
@@ -1117,7 +1317,7 @@
|
|
1117
1317
|
"members": {
|
1118
1318
|
"accountId": {},
|
1119
1319
|
"severityCounts": {
|
1120
|
-
"shape": "
|
1320
|
+
"shape": "S70"
|
1121
1321
|
}
|
1122
1322
|
}
|
1123
1323
|
},
|
@@ -1133,7 +1333,7 @@
|
|
1133
1333
|
},
|
1134
1334
|
"ami": {},
|
1135
1335
|
"severityCounts": {
|
1136
|
-
"shape": "
|
1336
|
+
"shape": "S70"
|
1137
1337
|
}
|
1138
1338
|
}
|
1139
1339
|
},
|
@@ -1153,7 +1353,7 @@
|
|
1153
1353
|
"repository": {},
|
1154
1354
|
"resourceId": {},
|
1155
1355
|
"severityCounts": {
|
1156
|
-
"shape": "
|
1356
|
+
"shape": "S70"
|
1157
1357
|
}
|
1158
1358
|
}
|
1159
1359
|
},
|
@@ -1167,14 +1367,14 @@
|
|
1167
1367
|
"ami": {},
|
1168
1368
|
"instanceId": {},
|
1169
1369
|
"instanceTags": {
|
1170
|
-
"shape": "
|
1370
|
+
"shape": "S2j"
|
1171
1371
|
},
|
1172
1372
|
"networkFindings": {
|
1173
1373
|
"type": "long"
|
1174
1374
|
},
|
1175
1375
|
"operatingSystem": {},
|
1176
1376
|
"severityCounts": {
|
1177
|
-
"shape": "
|
1377
|
+
"shape": "S70"
|
1178
1378
|
}
|
1179
1379
|
}
|
1180
1380
|
},
|
@@ -1183,7 +1383,7 @@
|
|
1183
1383
|
"members": {
|
1184
1384
|
"accountId": {},
|
1185
1385
|
"severityCounts": {
|
1186
|
-
"shape": "
|
1386
|
+
"shape": "S70"
|
1187
1387
|
}
|
1188
1388
|
}
|
1189
1389
|
},
|
@@ -1201,7 +1401,7 @@
|
|
1201
1401
|
"repository": {},
|
1202
1402
|
"resourceId": {},
|
1203
1403
|
"severityCounts": {
|
1204
|
-
"shape": "
|
1404
|
+
"shape": "S70"
|
1205
1405
|
}
|
1206
1406
|
}
|
1207
1407
|
},
|
@@ -1214,7 +1414,7 @@
|
|
1214
1414
|
"accountId": {},
|
1215
1415
|
"functionName": {},
|
1216
1416
|
"lambdaTags": {
|
1217
|
-
"shape": "
|
1417
|
+
"shape": "S2j"
|
1218
1418
|
},
|
1219
1419
|
"lastModifiedAt": {
|
1220
1420
|
"type": "timestamp"
|
@@ -1222,7 +1422,7 @@
|
|
1222
1422
|
"resourceId": {},
|
1223
1423
|
"runtime": {},
|
1224
1424
|
"severityCounts": {
|
1225
|
-
"shape": "
|
1425
|
+
"shape": "S70"
|
1226
1426
|
}
|
1227
1427
|
}
|
1228
1428
|
},
|
@@ -1240,7 +1440,7 @@
|
|
1240
1440
|
"layerArn": {},
|
1241
1441
|
"resourceId": {},
|
1242
1442
|
"severityCounts": {
|
1243
|
-
"shape": "
|
1443
|
+
"shape": "S70"
|
1244
1444
|
}
|
1245
1445
|
}
|
1246
1446
|
},
|
@@ -1253,7 +1453,7 @@
|
|
1253
1453
|
"accountId": {},
|
1254
1454
|
"packageName": {},
|
1255
1455
|
"severityCounts": {
|
1256
|
-
"shape": "
|
1456
|
+
"shape": "S70"
|
1257
1457
|
}
|
1258
1458
|
}
|
1259
1459
|
},
|
@@ -1269,7 +1469,7 @@
|
|
1269
1469
|
},
|
1270
1470
|
"repository": {},
|
1271
1471
|
"severityCounts": {
|
1272
|
-
"shape": "
|
1472
|
+
"shape": "S70"
|
1273
1473
|
}
|
1274
1474
|
}
|
1275
1475
|
},
|
@@ -1281,7 +1481,7 @@
|
|
1281
1481
|
"members": {
|
1282
1482
|
"accountId": {},
|
1283
1483
|
"severityCounts": {
|
1284
|
-
"shape": "
|
1484
|
+
"shape": "S70"
|
1285
1485
|
},
|
1286
1486
|
"title": {},
|
1287
1487
|
"vulnerabilityId": {}
|
@@ -1303,7 +1503,7 @@
|
|
1303
1503
|
"type": "structure",
|
1304
1504
|
"members": {
|
1305
1505
|
"filterCriteria": {
|
1306
|
-
"shape": "
|
1506
|
+
"shape": "S1x"
|
1307
1507
|
},
|
1308
1508
|
"maxResults": {
|
1309
1509
|
"type": "integer"
|
@@ -1343,7 +1543,61 @@
|
|
1343
1543
|
],
|
1344
1544
|
"members": {
|
1345
1545
|
"awsAccountId": {},
|
1546
|
+
"codeVulnerabilityDetails": {
|
1547
|
+
"type": "structure",
|
1548
|
+
"required": [
|
1549
|
+
"cwes",
|
1550
|
+
"detectorId",
|
1551
|
+
"detectorName",
|
1552
|
+
"filePath"
|
1553
|
+
],
|
1554
|
+
"members": {
|
1555
|
+
"cwes": {
|
1556
|
+
"type": "list",
|
1557
|
+
"member": {}
|
1558
|
+
},
|
1559
|
+
"detectorId": {},
|
1560
|
+
"detectorName": {},
|
1561
|
+
"detectorTags": {
|
1562
|
+
"type": "list",
|
1563
|
+
"member": {}
|
1564
|
+
},
|
1565
|
+
"filePath": {
|
1566
|
+
"type": "structure",
|
1567
|
+
"required": [
|
1568
|
+
"endLine",
|
1569
|
+
"fileName",
|
1570
|
+
"filePath",
|
1571
|
+
"startLine"
|
1572
|
+
],
|
1573
|
+
"members": {
|
1574
|
+
"endLine": {
|
1575
|
+
"type": "integer"
|
1576
|
+
},
|
1577
|
+
"fileName": {},
|
1578
|
+
"filePath": {},
|
1579
|
+
"startLine": {
|
1580
|
+
"type": "integer"
|
1581
|
+
}
|
1582
|
+
}
|
1583
|
+
},
|
1584
|
+
"referenceUrls": {
|
1585
|
+
"type": "list",
|
1586
|
+
"member": {}
|
1587
|
+
},
|
1588
|
+
"ruleId": {},
|
1589
|
+
"sourceLambdaLayerArn": {}
|
1590
|
+
}
|
1591
|
+
},
|
1346
1592
|
"description": {},
|
1593
|
+
"epss": {
|
1594
|
+
"type": "structure",
|
1595
|
+
"members": {
|
1596
|
+
"score": {
|
1597
|
+
"type": "double"
|
1598
|
+
}
|
1599
|
+
}
|
1600
|
+
},
|
1347
1601
|
"exploitAvailable": {},
|
1348
1602
|
"exploitabilityDetails": {
|
1349
1603
|
"type": "structure",
|
@@ -1637,7 +1891,7 @@
|
|
1637
1891
|
"partition": {},
|
1638
1892
|
"region": {},
|
1639
1893
|
"tags": {
|
1640
|
-
"shape": "
|
1894
|
+
"shape": "S2j"
|
1641
1895
|
},
|
1642
1896
|
"type": {}
|
1643
1897
|
}
|
@@ -1680,7 +1934,7 @@
|
|
1680
1934
|
"members": {
|
1681
1935
|
"type": "list",
|
1682
1936
|
"member": {
|
1683
|
-
"shape": "
|
1937
|
+
"shape": "S4d"
|
1684
1938
|
}
|
1685
1939
|
},
|
1686
1940
|
"nextToken": {}
|
@@ -1709,7 +1963,7 @@
|
|
1709
1963
|
"type": "structure",
|
1710
1964
|
"members": {
|
1711
1965
|
"tags": {
|
1712
|
-
"shape": "
|
1966
|
+
"shape": "S2j"
|
1713
1967
|
}
|
1714
1968
|
}
|
1715
1969
|
}
|
@@ -1764,6 +2018,29 @@
|
|
1764
2018
|
}
|
1765
2019
|
}
|
1766
2020
|
},
|
2021
|
+
"ResetEncryptionKey": {
|
2022
|
+
"http": {
|
2023
|
+
"method": "PUT",
|
2024
|
+
"requestUri": "/encryptionkey/reset",
|
2025
|
+
"responseCode": 200
|
2026
|
+
},
|
2027
|
+
"input": {
|
2028
|
+
"type": "structure",
|
2029
|
+
"required": [
|
2030
|
+
"resourceType",
|
2031
|
+
"scanType"
|
2032
|
+
],
|
2033
|
+
"members": {
|
2034
|
+
"resourceType": {},
|
2035
|
+
"scanType": {}
|
2036
|
+
}
|
2037
|
+
},
|
2038
|
+
"output": {
|
2039
|
+
"type": "structure",
|
2040
|
+
"members": {}
|
2041
|
+
},
|
2042
|
+
"idempotent": true
|
2043
|
+
},
|
1767
2044
|
"SearchVulnerabilities": {
|
1768
2045
|
"http": {
|
1769
2046
|
"requestUri": "/vulnerabilities/search",
|
@@ -1923,7 +2200,7 @@
|
|
1923
2200
|
"locationName": "resourceArn"
|
1924
2201
|
},
|
1925
2202
|
"tags": {
|
1926
|
-
"shape": "
|
2203
|
+
"shape": "S2j"
|
1927
2204
|
}
|
1928
2205
|
}
|
1929
2206
|
},
|
@@ -2002,7 +2279,7 @@
|
|
2002
2279
|
"type": "boolean"
|
2003
2280
|
},
|
2004
2281
|
"packagePaths": {
|
2005
|
-
"shape": "
|
2282
|
+
"shape": "S3z"
|
2006
2283
|
}
|
2007
2284
|
}
|
2008
2285
|
},
|
@@ -2011,15 +2288,40 @@
|
|
2011
2288
|
"members": {
|
2012
2289
|
"errorMessage": {},
|
2013
2290
|
"orgPackagePaths": {
|
2014
|
-
"shape": "
|
2291
|
+
"shape": "S3z"
|
2015
2292
|
},
|
2016
2293
|
"packagePaths": {
|
2017
|
-
"shape": "
|
2294
|
+
"shape": "S3z"
|
2018
2295
|
},
|
2019
2296
|
"status": {}
|
2020
2297
|
}
|
2021
2298
|
}
|
2022
2299
|
},
|
2300
|
+
"UpdateEncryptionKey": {
|
2301
|
+
"http": {
|
2302
|
+
"method": "PUT",
|
2303
|
+
"requestUri": "/encryptionkey/update",
|
2304
|
+
"responseCode": 200
|
2305
|
+
},
|
2306
|
+
"input": {
|
2307
|
+
"type": "structure",
|
2308
|
+
"required": [
|
2309
|
+
"kmsKeyId",
|
2310
|
+
"resourceType",
|
2311
|
+
"scanType"
|
2312
|
+
],
|
2313
|
+
"members": {
|
2314
|
+
"kmsKeyId": {},
|
2315
|
+
"resourceType": {},
|
2316
|
+
"scanType": {}
|
2317
|
+
}
|
2318
|
+
},
|
2319
|
+
"output": {
|
2320
|
+
"type": "structure",
|
2321
|
+
"members": {}
|
2322
|
+
},
|
2323
|
+
"idempotent": true
|
2324
|
+
},
|
2023
2325
|
"UpdateFilter": {
|
2024
2326
|
"http": {
|
2025
2327
|
"requestUri": "/filters/update",
|
@@ -2035,7 +2337,7 @@
|
|
2035
2337
|
"description": {},
|
2036
2338
|
"filterArn": {},
|
2037
2339
|
"filterCriteria": {
|
2038
|
-
"shape": "
|
2340
|
+
"shape": "S1x"
|
2039
2341
|
},
|
2040
2342
|
"name": {},
|
2041
2343
|
"reason": {}
|
@@ -2063,7 +2365,7 @@
|
|
2063
2365
|
],
|
2064
2366
|
"members": {
|
2065
2367
|
"orgPackagePaths": {
|
2066
|
-
"shape": "
|
2368
|
+
"shape": "S3z"
|
2067
2369
|
}
|
2068
2370
|
}
|
2069
2371
|
},
|
@@ -2084,7 +2386,7 @@
|
|
2084
2386
|
],
|
2085
2387
|
"members": {
|
2086
2388
|
"autoEnable": {
|
2087
|
-
"shape": "
|
2389
|
+
"shape": "S35"
|
2088
2390
|
}
|
2089
2391
|
}
|
2090
2392
|
},
|
@@ -2095,7 +2397,7 @@
|
|
2095
2397
|
],
|
2096
2398
|
"members": {
|
2097
2399
|
"autoEnable": {
|
2098
|
-
"shape": "
|
2400
|
+
"shape": "S35"
|
2099
2401
|
}
|
2100
2402
|
}
|
2101
2403
|
}
|
@@ -2148,10 +2450,11 @@
|
|
2148
2450
|
"members": {
|
2149
2451
|
"ec2": {},
|
2150
2452
|
"ecr": {},
|
2151
|
-
"lambda": {}
|
2453
|
+
"lambda": {},
|
2454
|
+
"lambdaCode": {}
|
2152
2455
|
}
|
2153
2456
|
},
|
2154
|
-
"
|
2457
|
+
"S1f": {
|
2155
2458
|
"type": "list",
|
2156
2459
|
"member": {
|
2157
2460
|
"type": "structure",
|
@@ -2165,7 +2468,7 @@
|
|
2165
2468
|
}
|
2166
2469
|
}
|
2167
2470
|
},
|
2168
|
-
"
|
2471
|
+
"S1i": {
|
2169
2472
|
"type": "list",
|
2170
2473
|
"member": {
|
2171
2474
|
"type": "structure",
|
@@ -2179,89 +2482,98 @@
|
|
2179
2482
|
}
|
2180
2483
|
}
|
2181
2484
|
},
|
2182
|
-
"
|
2485
|
+
"S1x": {
|
2183
2486
|
"type": "structure",
|
2184
2487
|
"members": {
|
2185
2488
|
"awsAccountId": {
|
2186
|
-
"shape": "
|
2489
|
+
"shape": "S1y"
|
2490
|
+
},
|
2491
|
+
"codeVulnerabilityDetectorName": {
|
2492
|
+
"shape": "S1y"
|
2493
|
+
},
|
2494
|
+
"codeVulnerabilityDetectorTags": {
|
2495
|
+
"shape": "S1y"
|
2496
|
+
},
|
2497
|
+
"codeVulnerabilityFilePath": {
|
2498
|
+
"shape": "S1y"
|
2187
2499
|
},
|
2188
2500
|
"componentId": {
|
2189
|
-
"shape": "
|
2501
|
+
"shape": "S1y"
|
2190
2502
|
},
|
2191
2503
|
"componentType": {
|
2192
|
-
"shape": "
|
2504
|
+
"shape": "S1y"
|
2193
2505
|
},
|
2194
2506
|
"ec2InstanceImageId": {
|
2195
|
-
"shape": "
|
2507
|
+
"shape": "S1y"
|
2196
2508
|
},
|
2197
2509
|
"ec2InstanceSubnetId": {
|
2198
|
-
"shape": "
|
2510
|
+
"shape": "S1y"
|
2199
2511
|
},
|
2200
2512
|
"ec2InstanceVpcId": {
|
2201
|
-
"shape": "
|
2513
|
+
"shape": "S1y"
|
2202
2514
|
},
|
2203
2515
|
"ecrImageArchitecture": {
|
2204
|
-
"shape": "
|
2516
|
+
"shape": "S1y"
|
2205
2517
|
},
|
2206
2518
|
"ecrImageHash": {
|
2207
|
-
"shape": "
|
2519
|
+
"shape": "S1y"
|
2208
2520
|
},
|
2209
2521
|
"ecrImagePushedAt": {
|
2210
|
-
"shape": "
|
2522
|
+
"shape": "S22"
|
2211
2523
|
},
|
2212
2524
|
"ecrImageRegistry": {
|
2213
|
-
"shape": "
|
2525
|
+
"shape": "S1y"
|
2214
2526
|
},
|
2215
2527
|
"ecrImageRepositoryName": {
|
2216
|
-
"shape": "
|
2528
|
+
"shape": "S1y"
|
2217
2529
|
},
|
2218
2530
|
"ecrImageTags": {
|
2219
|
-
"shape": "
|
2531
|
+
"shape": "S1y"
|
2532
|
+
},
|
2533
|
+
"epssScore": {
|
2534
|
+
"shape": "S24"
|
2220
2535
|
},
|
2221
2536
|
"exploitAvailable": {
|
2222
|
-
"shape": "
|
2537
|
+
"shape": "S1y"
|
2223
2538
|
},
|
2224
2539
|
"findingArn": {
|
2225
|
-
"shape": "
|
2540
|
+
"shape": "S1y"
|
2226
2541
|
},
|
2227
2542
|
"findingStatus": {
|
2228
|
-
"shape": "
|
2543
|
+
"shape": "S1y"
|
2229
2544
|
},
|
2230
2545
|
"findingType": {
|
2231
|
-
"shape": "
|
2546
|
+
"shape": "S1y"
|
2232
2547
|
},
|
2233
2548
|
"firstObservedAt": {
|
2234
|
-
"shape": "
|
2549
|
+
"shape": "S22"
|
2235
2550
|
},
|
2236
2551
|
"fixAvailable": {
|
2237
|
-
"shape": "
|
2552
|
+
"shape": "S1y"
|
2238
2553
|
},
|
2239
2554
|
"inspectorScore": {
|
2240
|
-
"
|
2241
|
-
"member": {
|
2242
|
-
"shape": "S1m"
|
2243
|
-
}
|
2555
|
+
"shape": "S24"
|
2244
2556
|
},
|
2245
2557
|
"lambdaFunctionExecutionRoleArn": {
|
2246
|
-
"shape": "
|
2558
|
+
"shape": "S1y"
|
2247
2559
|
},
|
2248
2560
|
"lambdaFunctionLastModifiedAt": {
|
2249
|
-
"shape": "
|
2561
|
+
"shape": "S22"
|
2250
2562
|
},
|
2251
2563
|
"lambdaFunctionLayers": {
|
2252
|
-
"shape": "
|
2564
|
+
"shape": "S1y"
|
2253
2565
|
},
|
2254
2566
|
"lambdaFunctionName": {
|
2255
|
-
"shape": "
|
2567
|
+
"shape": "S1y"
|
2256
2568
|
},
|
2257
2569
|
"lambdaFunctionRuntime": {
|
2258
|
-
"shape": "
|
2570
|
+
"shape": "S1y"
|
2259
2571
|
},
|
2260
2572
|
"lastObservedAt": {
|
2261
|
-
"shape": "
|
2573
|
+
"shape": "S22"
|
2262
2574
|
},
|
2263
2575
|
"networkProtocol": {
|
2264
|
-
"shape": "
|
2576
|
+
"shape": "S1y"
|
2265
2577
|
},
|
2266
2578
|
"portRange": {
|
2267
2579
|
"type": "list",
|
@@ -2278,34 +2590,34 @@
|
|
2278
2590
|
}
|
2279
2591
|
},
|
2280
2592
|
"relatedVulnerabilities": {
|
2281
|
-
"shape": "
|
2593
|
+
"shape": "S1y"
|
2282
2594
|
},
|
2283
2595
|
"resourceId": {
|
2284
|
-
"shape": "
|
2596
|
+
"shape": "S1y"
|
2285
2597
|
},
|
2286
2598
|
"resourceTags": {
|
2287
|
-
"shape": "
|
2599
|
+
"shape": "S2a"
|
2288
2600
|
},
|
2289
2601
|
"resourceType": {
|
2290
|
-
"shape": "
|
2602
|
+
"shape": "S1y"
|
2291
2603
|
},
|
2292
2604
|
"severity": {
|
2293
|
-
"shape": "
|
2605
|
+
"shape": "S1y"
|
2294
2606
|
},
|
2295
2607
|
"title": {
|
2296
|
-
"shape": "
|
2608
|
+
"shape": "S1y"
|
2297
2609
|
},
|
2298
2610
|
"updatedAt": {
|
2299
|
-
"shape": "
|
2611
|
+
"shape": "S22"
|
2300
2612
|
},
|
2301
2613
|
"vendorSeverity": {
|
2302
|
-
"shape": "
|
2614
|
+
"shape": "S1y"
|
2303
2615
|
},
|
2304
2616
|
"vulnerabilityId": {
|
2305
|
-
"shape": "
|
2617
|
+
"shape": "S1y"
|
2306
2618
|
},
|
2307
2619
|
"vulnerabilitySource": {
|
2308
|
-
"shape": "
|
2620
|
+
"shape": "S1y"
|
2309
2621
|
},
|
2310
2622
|
"vulnerablePackages": {
|
2311
2623
|
"type": "list",
|
@@ -2313,38 +2625,38 @@
|
|
2313
2625
|
"type": "structure",
|
2314
2626
|
"members": {
|
2315
2627
|
"architecture": {
|
2316
|
-
"shape": "
|
2628
|
+
"shape": "S1z"
|
2317
2629
|
},
|
2318
2630
|
"epoch": {
|
2319
|
-
"shape": "
|
2631
|
+
"shape": "S25"
|
2320
2632
|
},
|
2321
2633
|
"name": {
|
2322
|
-
"shape": "
|
2634
|
+
"shape": "S1z"
|
2323
2635
|
},
|
2324
2636
|
"release": {
|
2325
|
-
"shape": "
|
2637
|
+
"shape": "S1z"
|
2326
2638
|
},
|
2327
2639
|
"sourceLambdaLayerArn": {
|
2328
|
-
"shape": "
|
2640
|
+
"shape": "S1z"
|
2329
2641
|
},
|
2330
2642
|
"sourceLayerHash": {
|
2331
|
-
"shape": "
|
2643
|
+
"shape": "S1z"
|
2332
2644
|
},
|
2333
2645
|
"version": {
|
2334
|
-
"shape": "
|
2646
|
+
"shape": "S1z"
|
2335
2647
|
}
|
2336
2648
|
}
|
2337
2649
|
}
|
2338
2650
|
}
|
2339
2651
|
}
|
2340
2652
|
},
|
2341
|
-
"
|
2653
|
+
"S1y": {
|
2342
2654
|
"type": "list",
|
2343
2655
|
"member": {
|
2344
|
-
"shape": "
|
2656
|
+
"shape": "S1z"
|
2345
2657
|
}
|
2346
2658
|
},
|
2347
|
-
"
|
2659
|
+
"S1z": {
|
2348
2660
|
"type": "structure",
|
2349
2661
|
"required": [
|
2350
2662
|
"comparison",
|
@@ -2355,7 +2667,7 @@
|
|
2355
2667
|
"value": {}
|
2356
2668
|
}
|
2357
2669
|
},
|
2358
|
-
"
|
2670
|
+
"S22": {
|
2359
2671
|
"type": "list",
|
2360
2672
|
"member": {
|
2361
2673
|
"type": "structure",
|
@@ -2369,7 +2681,13 @@
|
|
2369
2681
|
}
|
2370
2682
|
}
|
2371
2683
|
},
|
2372
|
-
"
|
2684
|
+
"S24": {
|
2685
|
+
"type": "list",
|
2686
|
+
"member": {
|
2687
|
+
"shape": "S25"
|
2688
|
+
}
|
2689
|
+
},
|
2690
|
+
"S25": {
|
2373
2691
|
"type": "structure",
|
2374
2692
|
"members": {
|
2375
2693
|
"lowerInclusive": {
|
@@ -2380,7 +2698,7 @@
|
|
2380
2698
|
}
|
2381
2699
|
}
|
2382
2700
|
},
|
2383
|
-
"
|
2701
|
+
"S2a": {
|
2384
2702
|
"type": "list",
|
2385
2703
|
"member": {
|
2386
2704
|
"type": "structure",
|
@@ -2395,12 +2713,12 @@
|
|
2395
2713
|
}
|
2396
2714
|
}
|
2397
2715
|
},
|
2398
|
-
"
|
2716
|
+
"S2j": {
|
2399
2717
|
"type": "map",
|
2400
2718
|
"key": {},
|
2401
2719
|
"value": {}
|
2402
2720
|
},
|
2403
|
-
"
|
2721
|
+
"S2o": {
|
2404
2722
|
"type": "structure",
|
2405
2723
|
"required": [
|
2406
2724
|
"bucketName",
|
@@ -2412,7 +2730,65 @@
|
|
2412
2730
|
"kmsKeyArn": {}
|
2413
2731
|
}
|
2414
2732
|
},
|
2415
|
-
"
|
2733
|
+
"S2s": {
|
2734
|
+
"type": "structure",
|
2735
|
+
"members": {
|
2736
|
+
"accountId": {
|
2737
|
+
"shape": "S2t"
|
2738
|
+
},
|
2739
|
+
"ec2InstanceTags": {
|
2740
|
+
"shape": "S2x"
|
2741
|
+
},
|
2742
|
+
"ecrImageTags": {
|
2743
|
+
"shape": "S2t"
|
2744
|
+
},
|
2745
|
+
"ecrRepositoryName": {
|
2746
|
+
"shape": "S2t"
|
2747
|
+
},
|
2748
|
+
"lambdaFunctionName": {
|
2749
|
+
"shape": "S2t"
|
2750
|
+
},
|
2751
|
+
"lambdaFunctionTags": {
|
2752
|
+
"shape": "S2x"
|
2753
|
+
},
|
2754
|
+
"resourceId": {
|
2755
|
+
"shape": "S2t"
|
2756
|
+
},
|
2757
|
+
"resourceType": {
|
2758
|
+
"shape": "S2t"
|
2759
|
+
}
|
2760
|
+
}
|
2761
|
+
},
|
2762
|
+
"S2t": {
|
2763
|
+
"type": "list",
|
2764
|
+
"member": {
|
2765
|
+
"type": "structure",
|
2766
|
+
"required": [
|
2767
|
+
"comparison",
|
2768
|
+
"value"
|
2769
|
+
],
|
2770
|
+
"members": {
|
2771
|
+
"comparison": {},
|
2772
|
+
"value": {}
|
2773
|
+
}
|
2774
|
+
}
|
2775
|
+
},
|
2776
|
+
"S2x": {
|
2777
|
+
"type": "list",
|
2778
|
+
"member": {
|
2779
|
+
"type": "structure",
|
2780
|
+
"required": [
|
2781
|
+
"comparison",
|
2782
|
+
"key"
|
2783
|
+
],
|
2784
|
+
"members": {
|
2785
|
+
"comparison": {},
|
2786
|
+
"key": {},
|
2787
|
+
"value": {}
|
2788
|
+
}
|
2789
|
+
}
|
2790
|
+
},
|
2791
|
+
"S35": {
|
2416
2792
|
"type": "structure",
|
2417
2793
|
"required": [
|
2418
2794
|
"ec2",
|
@@ -2427,10 +2803,13 @@
|
|
2427
2803
|
},
|
2428
2804
|
"lambda": {
|
2429
2805
|
"type": "boolean"
|
2806
|
+
},
|
2807
|
+
"lambdaCode": {
|
2808
|
+
"type": "boolean"
|
2430
2809
|
}
|
2431
2810
|
}
|
2432
2811
|
},
|
2433
|
-
"
|
2812
|
+
"S3a": {
|
2434
2813
|
"type": "list",
|
2435
2814
|
"member": {
|
2436
2815
|
"type": "structure",
|
@@ -2448,11 +2827,11 @@
|
|
2448
2827
|
}
|
2449
2828
|
}
|
2450
2829
|
},
|
2451
|
-
"
|
2830
|
+
"S3z": {
|
2452
2831
|
"type": "list",
|
2453
2832
|
"member": {}
|
2454
2833
|
},
|
2455
|
-
"
|
2834
|
+
"S4d": {
|
2456
2835
|
"type": "structure",
|
2457
2836
|
"members": {
|
2458
2837
|
"accountId": {},
|
@@ -2463,29 +2842,29 @@
|
|
2463
2842
|
}
|
2464
2843
|
}
|
2465
2844
|
},
|
2466
|
-
"
|
2845
|
+
"S4p": {
|
2467
2846
|
"type": "structure",
|
2468
2847
|
"members": {
|
2469
2848
|
"accountId": {
|
2470
|
-
"shape": "
|
2849
|
+
"shape": "S4q"
|
2471
2850
|
},
|
2472
2851
|
"ec2InstanceTags": {
|
2473
|
-
"shape": "
|
2852
|
+
"shape": "S4u"
|
2474
2853
|
},
|
2475
2854
|
"ecrImageTags": {
|
2476
|
-
"shape": "
|
2855
|
+
"shape": "S4q"
|
2477
2856
|
},
|
2478
2857
|
"ecrRepositoryName": {
|
2479
|
-
"shape": "
|
2858
|
+
"shape": "S4q"
|
2480
2859
|
},
|
2481
2860
|
"lambdaFunctionName": {
|
2482
|
-
"shape": "
|
2861
|
+
"shape": "S4q"
|
2483
2862
|
},
|
2484
2863
|
"lambdaFunctionRuntime": {
|
2485
|
-
"shape": "
|
2864
|
+
"shape": "S4q"
|
2486
2865
|
},
|
2487
2866
|
"lambdaFunctionTags": {
|
2488
|
-
"shape": "
|
2867
|
+
"shape": "S4u"
|
2489
2868
|
},
|
2490
2869
|
"lastScannedAt": {
|
2491
2870
|
"type": "list",
|
@@ -2502,23 +2881,23 @@
|
|
2502
2881
|
}
|
2503
2882
|
},
|
2504
2883
|
"resourceId": {
|
2505
|
-
"shape": "
|
2884
|
+
"shape": "S4q"
|
2506
2885
|
},
|
2507
2886
|
"resourceType": {
|
2508
|
-
"shape": "
|
2887
|
+
"shape": "S4q"
|
2509
2888
|
},
|
2510
2889
|
"scanStatusCode": {
|
2511
|
-
"shape": "
|
2890
|
+
"shape": "S4q"
|
2512
2891
|
},
|
2513
2892
|
"scanStatusReason": {
|
2514
|
-
"shape": "
|
2893
|
+
"shape": "S4q"
|
2515
2894
|
},
|
2516
2895
|
"scanType": {
|
2517
|
-
"shape": "
|
2896
|
+
"shape": "S4q"
|
2518
2897
|
}
|
2519
2898
|
}
|
2520
2899
|
},
|
2521
|
-
"
|
2900
|
+
"S4q": {
|
2522
2901
|
"type": "list",
|
2523
2902
|
"member": {
|
2524
2903
|
"type": "structure",
|
@@ -2532,7 +2911,7 @@
|
|
2532
2911
|
}
|
2533
2912
|
}
|
2534
2913
|
},
|
2535
|
-
"
|
2914
|
+
"S4u": {
|
2536
2915
|
"type": "list",
|
2537
2916
|
"member": {
|
2538
2917
|
"type": "structure",
|
@@ -2547,7 +2926,7 @@
|
|
2547
2926
|
}
|
2548
2927
|
}
|
2549
2928
|
},
|
2550
|
-
"
|
2929
|
+
"S70": {
|
2551
2930
|
"type": "structure",
|
2552
2931
|
"members": {
|
2553
2932
|
"all": {
|