aws-sdk 2.972.0 → 2.976.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 +29 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +573 -32
- package/apis/backup-2018-11-15.paginators.json +15 -0
- package/apis/comprehend-2017-11-27.min.json +109 -69
- package/apis/datasync-2018-11-09.min.json +13 -1
- package/apis/dlm-2018-01-12.min.json +30 -9
- package/apis/dms-2016-01-01.min.json +191 -134
- package/apis/ec2-2016-11-15.min.json +232 -223
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/eks-2017-11-01.min.json +5 -0
- package/apis/fms-2018-01-01.min.json +6 -0
- package/apis/frauddetector-2019-11-15.min.json +30 -28
- package/apis/glue-2017-03-31.min.json +624 -354
- package/apis/glue-2017-03-31.paginators.json +10 -0
- package/apis/iot-data-2015-05-28.min.json +82 -0
- package/apis/iot-data-2015-05-28.paginators.json +7 -1
- package/apis/mediaconvert-2017-08-29.min.json +110 -89
- package/apis/ssm-2014-11-06.min.json +13 -3
- package/apis/transcribe-2017-10-26.min.json +161 -64
- package/clients/apigateway.d.ts +9 -9
- package/clients/backup.d.ts +715 -109
- package/clients/cloudwatchevents.d.ts +67 -67
- package/clients/comprehend.d.ts +96 -0
- package/clients/datasync.d.ts +69 -53
- package/clients/dlm.d.ts +50 -18
- package/clients/dms.d.ts +110 -19
- package/clients/ec2.d.ts +60 -42
- package/clients/eks.d.ts +6 -2
- package/clients/eventbridge.d.ts +3 -3
- package/clients/fms.d.ts +9 -1
- package/clients/frauddetector.d.ts +10 -9
- package/clients/glue.d.ts +392 -0
- package/clients/iotdata.d.ts +99 -13
- package/clients/iotsitewise.d.ts +3 -3
- package/clients/mediaconvert.d.ts +46 -12
- package/clients/polly.d.ts +15 -15
- package/clients/robomaker.d.ts +3 -3
- package/clients/transcribeservice.d.ts +146 -35
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +19 -19
- package/dist/aws-sdk.js +456 -300
- package/dist/aws-sdk.min.js +72 -71
- package/lib/core.js +1 -1
- package/lib/metadata_service/endpoint.js +6 -0
- package/lib/metadata_service/endpoint_config_options.js +14 -0
- package/lib/metadata_service/endpoint_mode.js +6 -0
- package/lib/metadata_service/endpoint_mode_config_options.js +16 -0
- package/lib/metadata_service/get_metadata_service_endpoint.js +24 -0
- package/lib/metadata_service.js +13 -3
- package/lib/node_loader.js +27 -0
- package/package.json +1 -1
|
@@ -115,6 +115,76 @@
|
|
|
115
115
|
},
|
|
116
116
|
"idempotent": true
|
|
117
117
|
},
|
|
118
|
+
"CreateFramework": {
|
|
119
|
+
"http": {
|
|
120
|
+
"requestUri": "/audit/frameworks"
|
|
121
|
+
},
|
|
122
|
+
"input": {
|
|
123
|
+
"type": "structure",
|
|
124
|
+
"required": [
|
|
125
|
+
"FrameworkName",
|
|
126
|
+
"FrameworkControls"
|
|
127
|
+
],
|
|
128
|
+
"members": {
|
|
129
|
+
"FrameworkName": {},
|
|
130
|
+
"FrameworkDescription": {},
|
|
131
|
+
"FrameworkControls": {
|
|
132
|
+
"shape": "S18"
|
|
133
|
+
},
|
|
134
|
+
"IdempotencyToken": {
|
|
135
|
+
"idempotencyToken": true
|
|
136
|
+
},
|
|
137
|
+
"FrameworkTags": {
|
|
138
|
+
"shape": "S1i"
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"output": {
|
|
143
|
+
"type": "structure",
|
|
144
|
+
"members": {
|
|
145
|
+
"FrameworkName": {},
|
|
146
|
+
"FrameworkArn": {}
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"idempotent": true
|
|
150
|
+
},
|
|
151
|
+
"CreateReportPlan": {
|
|
152
|
+
"http": {
|
|
153
|
+
"requestUri": "/audit/report-plans"
|
|
154
|
+
},
|
|
155
|
+
"input": {
|
|
156
|
+
"type": "structure",
|
|
157
|
+
"required": [
|
|
158
|
+
"ReportPlanName",
|
|
159
|
+
"ReportDeliveryChannel",
|
|
160
|
+
"ReportSetting"
|
|
161
|
+
],
|
|
162
|
+
"members": {
|
|
163
|
+
"ReportPlanName": {},
|
|
164
|
+
"ReportPlanDescription": {},
|
|
165
|
+
"ReportDeliveryChannel": {
|
|
166
|
+
"shape": "S1n"
|
|
167
|
+
},
|
|
168
|
+
"ReportSetting": {
|
|
169
|
+
"shape": "S1p"
|
|
170
|
+
},
|
|
171
|
+
"ReportPlanTags": {
|
|
172
|
+
"shape": "S1i"
|
|
173
|
+
},
|
|
174
|
+
"IdempotencyToken": {
|
|
175
|
+
"idempotencyToken": true
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"output": {
|
|
180
|
+
"type": "structure",
|
|
181
|
+
"members": {
|
|
182
|
+
"ReportPlanName": {},
|
|
183
|
+
"ReportPlanArn": {}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"idempotent": true
|
|
187
|
+
},
|
|
118
188
|
"DeleteBackupPlan": {
|
|
119
189
|
"http": {
|
|
120
190
|
"method": "DELETE",
|
|
@@ -223,6 +293,24 @@
|
|
|
223
293
|
},
|
|
224
294
|
"idempotent": true
|
|
225
295
|
},
|
|
296
|
+
"DeleteFramework": {
|
|
297
|
+
"http": {
|
|
298
|
+
"method": "DELETE",
|
|
299
|
+
"requestUri": "/audit/frameworks/{frameworkName}"
|
|
300
|
+
},
|
|
301
|
+
"input": {
|
|
302
|
+
"type": "structure",
|
|
303
|
+
"required": [
|
|
304
|
+
"FrameworkName"
|
|
305
|
+
],
|
|
306
|
+
"members": {
|
|
307
|
+
"FrameworkName": {
|
|
308
|
+
"location": "uri",
|
|
309
|
+
"locationName": "frameworkName"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
226
314
|
"DeleteRecoveryPoint": {
|
|
227
315
|
"http": {
|
|
228
316
|
"method": "DELETE",
|
|
@@ -247,6 +335,25 @@
|
|
|
247
335
|
},
|
|
248
336
|
"idempotent": true
|
|
249
337
|
},
|
|
338
|
+
"DeleteReportPlan": {
|
|
339
|
+
"http": {
|
|
340
|
+
"method": "DELETE",
|
|
341
|
+
"requestUri": "/audit/report-plans/{reportPlanName}"
|
|
342
|
+
},
|
|
343
|
+
"input": {
|
|
344
|
+
"type": "structure",
|
|
345
|
+
"required": [
|
|
346
|
+
"ReportPlanName"
|
|
347
|
+
],
|
|
348
|
+
"members": {
|
|
349
|
+
"ReportPlanName": {
|
|
350
|
+
"location": "uri",
|
|
351
|
+
"locationName": "reportPlanName"
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"idempotent": true
|
|
356
|
+
},
|
|
250
357
|
"DescribeBackupJob": {
|
|
251
358
|
"http": {
|
|
252
359
|
"method": "GET",
|
|
@@ -287,7 +394,7 @@
|
|
|
287
394
|
},
|
|
288
395
|
"IamRoleArn": {},
|
|
289
396
|
"CreatedBy": {
|
|
290
|
-
"shape": "
|
|
397
|
+
"shape": "S24"
|
|
291
398
|
},
|
|
292
399
|
"ResourceType": {},
|
|
293
400
|
"BytesTransferred": {
|
|
@@ -362,12 +469,47 @@
|
|
|
362
469
|
"type": "structure",
|
|
363
470
|
"members": {
|
|
364
471
|
"CopyJob": {
|
|
365
|
-
"shape": "
|
|
472
|
+
"shape": "S2a"
|
|
366
473
|
}
|
|
367
474
|
}
|
|
368
475
|
},
|
|
369
476
|
"idempotent": true
|
|
370
477
|
},
|
|
478
|
+
"DescribeFramework": {
|
|
479
|
+
"http": {
|
|
480
|
+
"method": "GET",
|
|
481
|
+
"requestUri": "/audit/frameworks/{frameworkName}"
|
|
482
|
+
},
|
|
483
|
+
"input": {
|
|
484
|
+
"type": "structure",
|
|
485
|
+
"required": [
|
|
486
|
+
"FrameworkName"
|
|
487
|
+
],
|
|
488
|
+
"members": {
|
|
489
|
+
"FrameworkName": {
|
|
490
|
+
"location": "uri",
|
|
491
|
+
"locationName": "frameworkName"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"output": {
|
|
496
|
+
"type": "structure",
|
|
497
|
+
"members": {
|
|
498
|
+
"FrameworkName": {},
|
|
499
|
+
"FrameworkArn": {},
|
|
500
|
+
"FrameworkDescription": {},
|
|
501
|
+
"FrameworkControls": {
|
|
502
|
+
"shape": "S18"
|
|
503
|
+
},
|
|
504
|
+
"CreationTime": {
|
|
505
|
+
"type": "timestamp"
|
|
506
|
+
},
|
|
507
|
+
"DeploymentStatus": {},
|
|
508
|
+
"FrameworkStatus": {},
|
|
509
|
+
"IdempotencyToken": {}
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
},
|
|
371
513
|
"DescribeGlobalSettings": {
|
|
372
514
|
"http": {
|
|
373
515
|
"method": "GET",
|
|
@@ -381,7 +523,7 @@
|
|
|
381
523
|
"type": "structure",
|
|
382
524
|
"members": {
|
|
383
525
|
"GlobalSettings": {
|
|
384
|
-
"shape": "
|
|
526
|
+
"shape": "S2g"
|
|
385
527
|
},
|
|
386
528
|
"LastUpdateTime": {
|
|
387
529
|
"type": "timestamp"
|
|
@@ -450,10 +592,11 @@
|
|
|
450
592
|
"ResourceArn": {},
|
|
451
593
|
"ResourceType": {},
|
|
452
594
|
"CreatedBy": {
|
|
453
|
-
"shape": "
|
|
595
|
+
"shape": "S24"
|
|
454
596
|
},
|
|
455
597
|
"IamRoleArn": {},
|
|
456
598
|
"Status": {},
|
|
599
|
+
"StatusMessage": {},
|
|
457
600
|
"CreationDate": {
|
|
458
601
|
"type": "timestamp"
|
|
459
602
|
},
|
|
@@ -464,7 +607,7 @@
|
|
|
464
607
|
"type": "long"
|
|
465
608
|
},
|
|
466
609
|
"CalculatedLifecycle": {
|
|
467
|
-
"shape": "
|
|
610
|
+
"shape": "S2o"
|
|
468
611
|
},
|
|
469
612
|
"Lifecycle": {
|
|
470
613
|
"shape": "Sa"
|
|
@@ -494,7 +637,59 @@
|
|
|
494
637
|
"type": "structure",
|
|
495
638
|
"members": {
|
|
496
639
|
"ResourceTypeOptInPreference": {
|
|
497
|
-
"shape": "
|
|
640
|
+
"shape": "S2t"
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"DescribeReportJob": {
|
|
646
|
+
"http": {
|
|
647
|
+
"method": "GET",
|
|
648
|
+
"requestUri": "/audit/report-jobs/{reportJobId}"
|
|
649
|
+
},
|
|
650
|
+
"input": {
|
|
651
|
+
"type": "structure",
|
|
652
|
+
"required": [
|
|
653
|
+
"ReportJobId"
|
|
654
|
+
],
|
|
655
|
+
"members": {
|
|
656
|
+
"ReportJobId": {
|
|
657
|
+
"location": "uri",
|
|
658
|
+
"locationName": "reportJobId"
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
"output": {
|
|
663
|
+
"type": "structure",
|
|
664
|
+
"members": {
|
|
665
|
+
"ReportJob": {
|
|
666
|
+
"shape": "S2y"
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"DescribeReportPlan": {
|
|
672
|
+
"http": {
|
|
673
|
+
"method": "GET",
|
|
674
|
+
"requestUri": "/audit/report-plans/{reportPlanName}"
|
|
675
|
+
},
|
|
676
|
+
"input": {
|
|
677
|
+
"type": "structure",
|
|
678
|
+
"required": [
|
|
679
|
+
"ReportPlanName"
|
|
680
|
+
],
|
|
681
|
+
"members": {
|
|
682
|
+
"ReportPlanName": {
|
|
683
|
+
"location": "uri",
|
|
684
|
+
"locationName": "reportPlanName"
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"output": {
|
|
689
|
+
"type": "structure",
|
|
690
|
+
"members": {
|
|
691
|
+
"ReportPlan": {
|
|
692
|
+
"shape": "S33"
|
|
498
693
|
}
|
|
499
694
|
}
|
|
500
695
|
}
|
|
@@ -615,7 +810,7 @@
|
|
|
615
810
|
"type": "structure",
|
|
616
811
|
"members": {
|
|
617
812
|
"BackupPlan": {
|
|
618
|
-
"shape": "
|
|
813
|
+
"shape": "S3d"
|
|
619
814
|
},
|
|
620
815
|
"BackupPlanId": {},
|
|
621
816
|
"BackupPlanArn": {},
|
|
@@ -654,7 +849,7 @@
|
|
|
654
849
|
"type": "structure",
|
|
655
850
|
"members": {
|
|
656
851
|
"BackupPlan": {
|
|
657
|
-
"shape": "
|
|
852
|
+
"shape": "S3d"
|
|
658
853
|
}
|
|
659
854
|
}
|
|
660
855
|
}
|
|
@@ -680,7 +875,7 @@
|
|
|
680
875
|
"type": "structure",
|
|
681
876
|
"members": {
|
|
682
877
|
"BackupPlanDocument": {
|
|
683
|
-
"shape": "
|
|
878
|
+
"shape": "S3d"
|
|
684
879
|
}
|
|
685
880
|
}
|
|
686
881
|
}
|
|
@@ -774,7 +969,7 @@
|
|
|
774
969
|
"BackupVaultArn": {},
|
|
775
970
|
"SNSTopicArn": {},
|
|
776
971
|
"BackupVaultEvents": {
|
|
777
|
-
"shape": "
|
|
972
|
+
"shape": "S3r"
|
|
778
973
|
}
|
|
779
974
|
}
|
|
780
975
|
},
|
|
@@ -808,7 +1003,7 @@
|
|
|
808
1003
|
"BackupVaultArn": {},
|
|
809
1004
|
"RecoveryPointArn": {},
|
|
810
1005
|
"RestoreMetadata": {
|
|
811
|
-
"shape": "
|
|
1006
|
+
"shape": "S3v"
|
|
812
1007
|
}
|
|
813
1008
|
}
|
|
814
1009
|
},
|
|
@@ -906,7 +1101,7 @@
|
|
|
906
1101
|
},
|
|
907
1102
|
"IamRoleArn": {},
|
|
908
1103
|
"CreatedBy": {
|
|
909
|
-
"shape": "
|
|
1104
|
+
"shape": "S24"
|
|
910
1105
|
},
|
|
911
1106
|
"ExpectedCompletionDate": {
|
|
912
1107
|
"type": "timestamp"
|
|
@@ -999,7 +1194,7 @@
|
|
|
999
1194
|
"BackupPlanVersionsList": {
|
|
1000
1195
|
"type": "list",
|
|
1001
1196
|
"member": {
|
|
1002
|
-
"shape": "
|
|
1197
|
+
"shape": "S4c"
|
|
1003
1198
|
}
|
|
1004
1199
|
}
|
|
1005
1200
|
}
|
|
@@ -1037,7 +1232,7 @@
|
|
|
1037
1232
|
"BackupPlansList": {
|
|
1038
1233
|
"type": "list",
|
|
1039
1234
|
"member": {
|
|
1040
|
-
"shape": "
|
|
1235
|
+
"shape": "S4c"
|
|
1041
1236
|
}
|
|
1042
1237
|
}
|
|
1043
1238
|
}
|
|
@@ -1194,7 +1389,51 @@
|
|
|
1194
1389
|
"CopyJobs": {
|
|
1195
1390
|
"type": "list",
|
|
1196
1391
|
"member": {
|
|
1197
|
-
"shape": "
|
|
1392
|
+
"shape": "S2a"
|
|
1393
|
+
}
|
|
1394
|
+
},
|
|
1395
|
+
"NextToken": {}
|
|
1396
|
+
}
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
"ListFrameworks": {
|
|
1400
|
+
"http": {
|
|
1401
|
+
"method": "GET",
|
|
1402
|
+
"requestUri": "/audit/frameworks"
|
|
1403
|
+
},
|
|
1404
|
+
"input": {
|
|
1405
|
+
"type": "structure",
|
|
1406
|
+
"members": {
|
|
1407
|
+
"MaxResults": {
|
|
1408
|
+
"location": "querystring",
|
|
1409
|
+
"locationName": "MaxResults",
|
|
1410
|
+
"type": "integer"
|
|
1411
|
+
},
|
|
1412
|
+
"NextToken": {
|
|
1413
|
+
"location": "querystring",
|
|
1414
|
+
"locationName": "NextToken"
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
"output": {
|
|
1419
|
+
"type": "structure",
|
|
1420
|
+
"members": {
|
|
1421
|
+
"Frameworks": {
|
|
1422
|
+
"type": "list",
|
|
1423
|
+
"member": {
|
|
1424
|
+
"type": "structure",
|
|
1425
|
+
"members": {
|
|
1426
|
+
"FrameworkName": {},
|
|
1427
|
+
"FrameworkArn": {},
|
|
1428
|
+
"FrameworkDescription": {},
|
|
1429
|
+
"NumberOfControls": {
|
|
1430
|
+
"type": "integer"
|
|
1431
|
+
},
|
|
1432
|
+
"CreationTime": {
|
|
1433
|
+
"type": "timestamp"
|
|
1434
|
+
},
|
|
1435
|
+
"DeploymentStatus": {}
|
|
1436
|
+
}
|
|
1198
1437
|
}
|
|
1199
1438
|
},
|
|
1200
1439
|
"NextToken": {}
|
|
@@ -1305,10 +1544,11 @@
|
|
|
1305
1544
|
"ResourceArn": {},
|
|
1306
1545
|
"ResourceType": {},
|
|
1307
1546
|
"CreatedBy": {
|
|
1308
|
-
"shape": "
|
|
1547
|
+
"shape": "S24"
|
|
1309
1548
|
},
|
|
1310
1549
|
"IamRoleArn": {},
|
|
1311
1550
|
"Status": {},
|
|
1551
|
+
"StatusMessage": {},
|
|
1312
1552
|
"CreationDate": {
|
|
1313
1553
|
"type": "timestamp"
|
|
1314
1554
|
},
|
|
@@ -1319,7 +1559,7 @@
|
|
|
1319
1559
|
"type": "long"
|
|
1320
1560
|
},
|
|
1321
1561
|
"CalculatedLifecycle": {
|
|
1322
|
-
"shape": "
|
|
1562
|
+
"shape": "S2o"
|
|
1323
1563
|
},
|
|
1324
1564
|
"Lifecycle": {
|
|
1325
1565
|
"shape": "Sa"
|
|
@@ -1378,6 +1618,7 @@
|
|
|
1378
1618
|
"type": "timestamp"
|
|
1379
1619
|
},
|
|
1380
1620
|
"Status": {},
|
|
1621
|
+
"StatusMessage": {},
|
|
1381
1622
|
"EncryptionKeyArn": {},
|
|
1382
1623
|
"BackupSizeBytes": {
|
|
1383
1624
|
"type": "long"
|
|
@@ -1390,6 +1631,88 @@
|
|
|
1390
1631
|
},
|
|
1391
1632
|
"idempotent": true
|
|
1392
1633
|
},
|
|
1634
|
+
"ListReportJobs": {
|
|
1635
|
+
"http": {
|
|
1636
|
+
"method": "GET",
|
|
1637
|
+
"requestUri": "/audit/report-jobs"
|
|
1638
|
+
},
|
|
1639
|
+
"input": {
|
|
1640
|
+
"type": "structure",
|
|
1641
|
+
"members": {
|
|
1642
|
+
"ByReportPlanName": {
|
|
1643
|
+
"location": "querystring",
|
|
1644
|
+
"locationName": "ReportPlanName"
|
|
1645
|
+
},
|
|
1646
|
+
"ByCreationBefore": {
|
|
1647
|
+
"location": "querystring",
|
|
1648
|
+
"locationName": "CreationBefore",
|
|
1649
|
+
"type": "timestamp"
|
|
1650
|
+
},
|
|
1651
|
+
"ByCreationAfter": {
|
|
1652
|
+
"location": "querystring",
|
|
1653
|
+
"locationName": "CreationAfter",
|
|
1654
|
+
"type": "timestamp"
|
|
1655
|
+
},
|
|
1656
|
+
"ByStatus": {
|
|
1657
|
+
"location": "querystring",
|
|
1658
|
+
"locationName": "Status"
|
|
1659
|
+
},
|
|
1660
|
+
"MaxResults": {
|
|
1661
|
+
"location": "querystring",
|
|
1662
|
+
"locationName": "MaxResults",
|
|
1663
|
+
"type": "integer"
|
|
1664
|
+
},
|
|
1665
|
+
"NextToken": {
|
|
1666
|
+
"location": "querystring",
|
|
1667
|
+
"locationName": "NextToken"
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
},
|
|
1671
|
+
"output": {
|
|
1672
|
+
"type": "structure",
|
|
1673
|
+
"members": {
|
|
1674
|
+
"ReportJobs": {
|
|
1675
|
+
"type": "list",
|
|
1676
|
+
"member": {
|
|
1677
|
+
"shape": "S2y"
|
|
1678
|
+
}
|
|
1679
|
+
},
|
|
1680
|
+
"NextToken": {}
|
|
1681
|
+
}
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"ListReportPlans": {
|
|
1685
|
+
"http": {
|
|
1686
|
+
"method": "GET",
|
|
1687
|
+
"requestUri": "/audit/report-plans"
|
|
1688
|
+
},
|
|
1689
|
+
"input": {
|
|
1690
|
+
"type": "structure",
|
|
1691
|
+
"members": {
|
|
1692
|
+
"MaxResults": {
|
|
1693
|
+
"location": "querystring",
|
|
1694
|
+
"locationName": "MaxResults",
|
|
1695
|
+
"type": "integer"
|
|
1696
|
+
},
|
|
1697
|
+
"NextToken": {
|
|
1698
|
+
"location": "querystring",
|
|
1699
|
+
"locationName": "NextToken"
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
},
|
|
1703
|
+
"output": {
|
|
1704
|
+
"type": "structure",
|
|
1705
|
+
"members": {
|
|
1706
|
+
"ReportPlans": {
|
|
1707
|
+
"type": "list",
|
|
1708
|
+
"member": {
|
|
1709
|
+
"shape": "S33"
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
"NextToken": {}
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
},
|
|
1393
1716
|
"ListRestoreJobs": {
|
|
1394
1717
|
"http": {
|
|
1395
1718
|
"method": "GET",
|
|
@@ -1540,7 +1863,7 @@
|
|
|
1540
1863
|
},
|
|
1541
1864
|
"SNSTopicArn": {},
|
|
1542
1865
|
"BackupVaultEvents": {
|
|
1543
|
-
"shape": "
|
|
1866
|
+
"shape": "S3r"
|
|
1544
1867
|
}
|
|
1545
1868
|
}
|
|
1546
1869
|
},
|
|
@@ -1627,6 +1950,33 @@
|
|
|
1627
1950
|
},
|
|
1628
1951
|
"idempotent": true
|
|
1629
1952
|
},
|
|
1953
|
+
"StartReportJob": {
|
|
1954
|
+
"http": {
|
|
1955
|
+
"requestUri": "/audit/report-jobs/{reportPlanName}"
|
|
1956
|
+
},
|
|
1957
|
+
"input": {
|
|
1958
|
+
"type": "structure",
|
|
1959
|
+
"required": [
|
|
1960
|
+
"ReportPlanName"
|
|
1961
|
+
],
|
|
1962
|
+
"members": {
|
|
1963
|
+
"ReportPlanName": {
|
|
1964
|
+
"location": "uri",
|
|
1965
|
+
"locationName": "reportPlanName"
|
|
1966
|
+
},
|
|
1967
|
+
"IdempotencyToken": {
|
|
1968
|
+
"idempotencyToken": true
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
},
|
|
1972
|
+
"output": {
|
|
1973
|
+
"type": "structure",
|
|
1974
|
+
"members": {
|
|
1975
|
+
"ReportJobId": {}
|
|
1976
|
+
}
|
|
1977
|
+
},
|
|
1978
|
+
"idempotent": true
|
|
1979
|
+
},
|
|
1630
1980
|
"StartRestoreJob": {
|
|
1631
1981
|
"http": {
|
|
1632
1982
|
"method": "PUT",
|
|
@@ -1642,7 +1992,7 @@
|
|
|
1642
1992
|
"members": {
|
|
1643
1993
|
"RecoveryPointArn": {},
|
|
1644
1994
|
"Metadata": {
|
|
1645
|
-
"shape": "
|
|
1995
|
+
"shape": "S3v"
|
|
1646
1996
|
},
|
|
1647
1997
|
"IamRoleArn": {},
|
|
1648
1998
|
"IdempotencyToken": {},
|
|
@@ -1756,6 +2106,42 @@
|
|
|
1756
2106
|
},
|
|
1757
2107
|
"idempotent": true
|
|
1758
2108
|
},
|
|
2109
|
+
"UpdateFramework": {
|
|
2110
|
+
"http": {
|
|
2111
|
+
"method": "PUT",
|
|
2112
|
+
"requestUri": "/audit/frameworks/{frameworkName}"
|
|
2113
|
+
},
|
|
2114
|
+
"input": {
|
|
2115
|
+
"type": "structure",
|
|
2116
|
+
"required": [
|
|
2117
|
+
"FrameworkName"
|
|
2118
|
+
],
|
|
2119
|
+
"members": {
|
|
2120
|
+
"FrameworkName": {
|
|
2121
|
+
"location": "uri",
|
|
2122
|
+
"locationName": "frameworkName"
|
|
2123
|
+
},
|
|
2124
|
+
"FrameworkDescription": {},
|
|
2125
|
+
"FrameworkControls": {
|
|
2126
|
+
"shape": "S18"
|
|
2127
|
+
},
|
|
2128
|
+
"IdempotencyToken": {
|
|
2129
|
+
"idempotencyToken": true
|
|
2130
|
+
}
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2133
|
+
"output": {
|
|
2134
|
+
"type": "structure",
|
|
2135
|
+
"members": {
|
|
2136
|
+
"FrameworkName": {},
|
|
2137
|
+
"FrameworkArn": {},
|
|
2138
|
+
"CreationTime": {
|
|
2139
|
+
"type": "timestamp"
|
|
2140
|
+
}
|
|
2141
|
+
}
|
|
2142
|
+
},
|
|
2143
|
+
"idempotent": true
|
|
2144
|
+
},
|
|
1759
2145
|
"UpdateGlobalSettings": {
|
|
1760
2146
|
"http": {
|
|
1761
2147
|
"method": "PUT",
|
|
@@ -1765,7 +2151,7 @@
|
|
|
1765
2151
|
"type": "structure",
|
|
1766
2152
|
"members": {
|
|
1767
2153
|
"GlobalSettings": {
|
|
1768
|
-
"shape": "
|
|
2154
|
+
"shape": "S2g"
|
|
1769
2155
|
}
|
|
1770
2156
|
}
|
|
1771
2157
|
}
|
|
@@ -1803,7 +2189,7 @@
|
|
|
1803
2189
|
"shape": "Sa"
|
|
1804
2190
|
},
|
|
1805
2191
|
"CalculatedLifecycle": {
|
|
1806
|
-
"shape": "
|
|
2192
|
+
"shape": "S2o"
|
|
1807
2193
|
}
|
|
1808
2194
|
}
|
|
1809
2195
|
},
|
|
@@ -1818,10 +2204,49 @@
|
|
|
1818
2204
|
"type": "structure",
|
|
1819
2205
|
"members": {
|
|
1820
2206
|
"ResourceTypeOptInPreference": {
|
|
1821
|
-
"shape": "
|
|
2207
|
+
"shape": "S2t"
|
|
1822
2208
|
}
|
|
1823
2209
|
}
|
|
1824
2210
|
}
|
|
2211
|
+
},
|
|
2212
|
+
"UpdateReportPlan": {
|
|
2213
|
+
"http": {
|
|
2214
|
+
"method": "PUT",
|
|
2215
|
+
"requestUri": "/audit/report-plans/{reportPlanName}"
|
|
2216
|
+
},
|
|
2217
|
+
"input": {
|
|
2218
|
+
"type": "structure",
|
|
2219
|
+
"required": [
|
|
2220
|
+
"ReportPlanName"
|
|
2221
|
+
],
|
|
2222
|
+
"members": {
|
|
2223
|
+
"ReportPlanName": {
|
|
2224
|
+
"location": "uri",
|
|
2225
|
+
"locationName": "reportPlanName"
|
|
2226
|
+
},
|
|
2227
|
+
"ReportPlanDescription": {},
|
|
2228
|
+
"ReportDeliveryChannel": {
|
|
2229
|
+
"shape": "S1n"
|
|
2230
|
+
},
|
|
2231
|
+
"ReportSetting": {
|
|
2232
|
+
"shape": "S1p"
|
|
2233
|
+
},
|
|
2234
|
+
"IdempotencyToken": {
|
|
2235
|
+
"idempotencyToken": true
|
|
2236
|
+
}
|
|
2237
|
+
}
|
|
2238
|
+
},
|
|
2239
|
+
"output": {
|
|
2240
|
+
"type": "structure",
|
|
2241
|
+
"members": {
|
|
2242
|
+
"ReportPlanName": {},
|
|
2243
|
+
"ReportPlanArn": {},
|
|
2244
|
+
"CreationTime": {
|
|
2245
|
+
"type": "timestamp"
|
|
2246
|
+
}
|
|
2247
|
+
}
|
|
2248
|
+
},
|
|
2249
|
+
"idempotent": true
|
|
1825
2250
|
}
|
|
1826
2251
|
},
|
|
1827
2252
|
"shapes": {
|
|
@@ -1951,7 +2376,73 @@
|
|
|
1951
2376
|
}
|
|
1952
2377
|
}
|
|
1953
2378
|
},
|
|
1954
|
-
"
|
|
2379
|
+
"S18": {
|
|
2380
|
+
"type": "list",
|
|
2381
|
+
"member": {
|
|
2382
|
+
"type": "structure",
|
|
2383
|
+
"required": [
|
|
2384
|
+
"ControlName"
|
|
2385
|
+
],
|
|
2386
|
+
"members": {
|
|
2387
|
+
"ControlName": {},
|
|
2388
|
+
"ControlInputParameters": {
|
|
2389
|
+
"type": "list",
|
|
2390
|
+
"member": {
|
|
2391
|
+
"type": "structure",
|
|
2392
|
+
"members": {
|
|
2393
|
+
"ParameterName": {},
|
|
2394
|
+
"ParameterValue": {}
|
|
2395
|
+
}
|
|
2396
|
+
}
|
|
2397
|
+
},
|
|
2398
|
+
"ControlScope": {
|
|
2399
|
+
"type": "structure",
|
|
2400
|
+
"members": {
|
|
2401
|
+
"ComplianceResourceIds": {
|
|
2402
|
+
"type": "list",
|
|
2403
|
+
"member": {}
|
|
2404
|
+
},
|
|
2405
|
+
"ComplianceResourceTypes": {
|
|
2406
|
+
"type": "list",
|
|
2407
|
+
"member": {}
|
|
2408
|
+
},
|
|
2409
|
+
"Tags": {
|
|
2410
|
+
"shape": "S1i"
|
|
2411
|
+
}
|
|
2412
|
+
}
|
|
2413
|
+
}
|
|
2414
|
+
}
|
|
2415
|
+
}
|
|
2416
|
+
},
|
|
2417
|
+
"S1i": {
|
|
2418
|
+
"type": "map",
|
|
2419
|
+
"key": {},
|
|
2420
|
+
"value": {}
|
|
2421
|
+
},
|
|
2422
|
+
"S1n": {
|
|
2423
|
+
"type": "structure",
|
|
2424
|
+
"required": [
|
|
2425
|
+
"S3BucketName"
|
|
2426
|
+
],
|
|
2427
|
+
"members": {
|
|
2428
|
+
"S3BucketName": {},
|
|
2429
|
+
"S3KeyPrefix": {},
|
|
2430
|
+
"Formats": {
|
|
2431
|
+
"type": "list",
|
|
2432
|
+
"member": {}
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
},
|
|
2436
|
+
"S1p": {
|
|
2437
|
+
"type": "structure",
|
|
2438
|
+
"required": [
|
|
2439
|
+
"ReportTemplate"
|
|
2440
|
+
],
|
|
2441
|
+
"members": {
|
|
2442
|
+
"ReportTemplate": {}
|
|
2443
|
+
}
|
|
2444
|
+
},
|
|
2445
|
+
"S24": {
|
|
1955
2446
|
"type": "structure",
|
|
1956
2447
|
"members": {
|
|
1957
2448
|
"BackupPlanId": {},
|
|
@@ -1960,7 +2451,7 @@
|
|
|
1960
2451
|
"BackupRuleId": {}
|
|
1961
2452
|
}
|
|
1962
2453
|
},
|
|
1963
|
-
"
|
|
2454
|
+
"S2a": {
|
|
1964
2455
|
"type": "structure",
|
|
1965
2456
|
"members": {
|
|
1966
2457
|
"AccountId": {},
|
|
@@ -1983,17 +2474,17 @@
|
|
|
1983
2474
|
},
|
|
1984
2475
|
"IamRoleArn": {},
|
|
1985
2476
|
"CreatedBy": {
|
|
1986
|
-
"shape": "
|
|
2477
|
+
"shape": "S24"
|
|
1987
2478
|
},
|
|
1988
2479
|
"ResourceType": {}
|
|
1989
2480
|
}
|
|
1990
2481
|
},
|
|
1991
|
-
"
|
|
2482
|
+
"S2g": {
|
|
1992
2483
|
"type": "map",
|
|
1993
2484
|
"key": {},
|
|
1994
2485
|
"value": {}
|
|
1995
2486
|
},
|
|
1996
|
-
"
|
|
2487
|
+
"S2o": {
|
|
1997
2488
|
"type": "structure",
|
|
1998
2489
|
"members": {
|
|
1999
2490
|
"MoveToColdStorageAt": {
|
|
@@ -2004,14 +2495,64 @@
|
|
|
2004
2495
|
}
|
|
2005
2496
|
}
|
|
2006
2497
|
},
|
|
2007
|
-
"
|
|
2498
|
+
"S2t": {
|
|
2008
2499
|
"type": "map",
|
|
2009
2500
|
"key": {},
|
|
2010
2501
|
"value": {
|
|
2011
2502
|
"type": "boolean"
|
|
2012
2503
|
}
|
|
2013
2504
|
},
|
|
2014
|
-
"
|
|
2505
|
+
"S2y": {
|
|
2506
|
+
"type": "structure",
|
|
2507
|
+
"members": {
|
|
2508
|
+
"ReportJobId": {},
|
|
2509
|
+
"ReportPlanArn": {},
|
|
2510
|
+
"ReportTemplate": {},
|
|
2511
|
+
"CreationTime": {
|
|
2512
|
+
"type": "timestamp"
|
|
2513
|
+
},
|
|
2514
|
+
"CompletionTime": {
|
|
2515
|
+
"type": "timestamp"
|
|
2516
|
+
},
|
|
2517
|
+
"Status": {},
|
|
2518
|
+
"StatusMessage": {},
|
|
2519
|
+
"ReportDestination": {
|
|
2520
|
+
"type": "structure",
|
|
2521
|
+
"members": {
|
|
2522
|
+
"S3BucketName": {},
|
|
2523
|
+
"S3Keys": {
|
|
2524
|
+
"type": "list",
|
|
2525
|
+
"member": {}
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
},
|
|
2531
|
+
"S33": {
|
|
2532
|
+
"type": "structure",
|
|
2533
|
+
"members": {
|
|
2534
|
+
"ReportPlanArn": {},
|
|
2535
|
+
"ReportPlanName": {},
|
|
2536
|
+
"ReportPlanDescription": {},
|
|
2537
|
+
"ReportSetting": {
|
|
2538
|
+
"shape": "S1p"
|
|
2539
|
+
},
|
|
2540
|
+
"ReportDeliveryChannel": {
|
|
2541
|
+
"shape": "S1n"
|
|
2542
|
+
},
|
|
2543
|
+
"DeploymentStatus": {},
|
|
2544
|
+
"CreationTime": {
|
|
2545
|
+
"type": "timestamp"
|
|
2546
|
+
},
|
|
2547
|
+
"LastAttemptedExecutionTime": {
|
|
2548
|
+
"type": "timestamp"
|
|
2549
|
+
},
|
|
2550
|
+
"LastSuccessfulExecutionTime": {
|
|
2551
|
+
"type": "timestamp"
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
},
|
|
2555
|
+
"S3d": {
|
|
2015
2556
|
"type": "structure",
|
|
2016
2557
|
"required": [
|
|
2017
2558
|
"BackupPlanName",
|
|
@@ -2058,17 +2599,17 @@
|
|
|
2058
2599
|
}
|
|
2059
2600
|
}
|
|
2060
2601
|
},
|
|
2061
|
-
"
|
|
2602
|
+
"S3r": {
|
|
2062
2603
|
"type": "list",
|
|
2063
2604
|
"member": {}
|
|
2064
2605
|
},
|
|
2065
|
-
"
|
|
2606
|
+
"S3v": {
|
|
2066
2607
|
"type": "map",
|
|
2067
2608
|
"key": {},
|
|
2068
2609
|
"value": {},
|
|
2069
2610
|
"sensitive": true
|
|
2070
2611
|
},
|
|
2071
|
-
"
|
|
2612
|
+
"S4c": {
|
|
2072
2613
|
"type": "structure",
|
|
2073
2614
|
"members": {
|
|
2074
2615
|
"BackupPlanArn": {},
|