cdk-docker-image-deployment 0.0.87 → 0.0.88
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 +23 -1
- package/node_modules/aws-sdk/README.md +29 -1
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +441 -110
- package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +124 -45
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +331 -215
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +252 -214
- package/node_modules/aws-sdk/apis/iot-data-2015-05-28.min.json +26 -0
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +686 -105
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +43 -8
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +97 -16
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +931 -118
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +23 -14
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +4 -1
- package/node_modules/aws-sdk/apis/oam-2022-06-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/oam-2022-06-10.min.json +482 -0
- package/node_modules/aws-sdk/apis/oam-2022-06-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/organizations-2016-11-28.min.json +62 -16
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +379 -236
- package/node_modules/aws-sdk/apis/rds-2014-10-31.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +310 -62
- package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +98 -95
- 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/backup.d.ts +405 -15
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +30 -16
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +196 -65
- package/node_modules/aws-sdk/clients/drs.d.ts +104 -5
- package/node_modules/aws-sdk/clients/ecs.d.ts +159 -17
- package/node_modules/aws-sdk/clients/efs.d.ts +5 -5
- package/node_modules/aws-sdk/clients/iot.d.ts +76 -4
- package/node_modules/aws-sdk/clients/iotdata.d.ts +31 -1
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +599 -14
- package/node_modules/aws-sdk/clients/kendra.d.ts +84 -39
- package/node_modules/aws-sdk/clients/mgn.d.ts +1046 -68
- package/node_modules/aws-sdk/clients/oam.d.ts +559 -0
- package/node_modules/aws-sdk/clients/oam.js +18 -0
- package/node_modules/aws-sdk/clients/organizations.d.ts +69 -8
- package/node_modules/aws-sdk/clients/rds.d.ts +199 -2
- package/node_modules/aws-sdk/clients/textract.d.ts +264 -0
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +210 -191
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +29 -10
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +91 -33
- package/node_modules/aws-sdk/dist/aws-sdk.js +1167 -707
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +59 -59
- 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/lib/event_listeners.js +22 -5
- package/node_modules/aws-sdk/lib/region_config.js +3 -1
- package/node_modules/aws-sdk/lib/region_config_data.json +11 -1
- package/node_modules/aws-sdk/lib/signers/bearer.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -5
|
@@ -311,6 +311,34 @@
|
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
},
|
|
314
|
+
"CreateBlueGreenDeployment": {
|
|
315
|
+
"input": {
|
|
316
|
+
"type": "structure",
|
|
317
|
+
"required": [
|
|
318
|
+
"BlueGreenDeploymentName",
|
|
319
|
+
"Source"
|
|
320
|
+
],
|
|
321
|
+
"members": {
|
|
322
|
+
"BlueGreenDeploymentName": {},
|
|
323
|
+
"Source": {},
|
|
324
|
+
"TargetEngineVersion": {},
|
|
325
|
+
"TargetDBParameterGroupName": {},
|
|
326
|
+
"TargetDBClusterParameterGroupName": {},
|
|
327
|
+
"Tags": {
|
|
328
|
+
"shape": "Sb"
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"output": {
|
|
333
|
+
"resultWrapper": "CreateBlueGreenDeploymentResult",
|
|
334
|
+
"type": "structure",
|
|
335
|
+
"members": {
|
|
336
|
+
"BlueGreenDeployment": {
|
|
337
|
+
"shape": "S1w"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
},
|
|
314
342
|
"CreateCustomDBEngineVersion": {
|
|
315
343
|
"input": {
|
|
316
344
|
"type": "structure",
|
|
@@ -335,7 +363,7 @@
|
|
|
335
363
|
}
|
|
336
364
|
},
|
|
337
365
|
"output": {
|
|
338
|
-
"shape": "
|
|
366
|
+
"shape": "S2f",
|
|
339
367
|
"resultWrapper": "CreateCustomDBEngineVersionResult"
|
|
340
368
|
}
|
|
341
369
|
},
|
|
@@ -358,7 +386,7 @@
|
|
|
358
386
|
"DBClusterIdentifier": {},
|
|
359
387
|
"DBClusterParameterGroupName": {},
|
|
360
388
|
"VpcSecurityGroupIds": {
|
|
361
|
-
"shape": "
|
|
389
|
+
"shape": "S2q"
|
|
362
390
|
},
|
|
363
391
|
"DBSubnetGroupName": {},
|
|
364
392
|
"Engine": {},
|
|
@@ -387,11 +415,11 @@
|
|
|
387
415
|
"type": "long"
|
|
388
416
|
},
|
|
389
417
|
"EnableCloudwatchLogsExports": {
|
|
390
|
-
"shape": "
|
|
418
|
+
"shape": "S2n"
|
|
391
419
|
},
|
|
392
420
|
"EngineMode": {},
|
|
393
421
|
"ScalingConfiguration": {
|
|
394
|
-
"shape": "
|
|
422
|
+
"shape": "S2s"
|
|
395
423
|
},
|
|
396
424
|
"DeletionProtection": {
|
|
397
425
|
"type": "boolean"
|
|
@@ -434,7 +462,7 @@
|
|
|
434
462
|
"type": "integer"
|
|
435
463
|
},
|
|
436
464
|
"ServerlessV2ScalingConfiguration": {
|
|
437
|
-
"shape": "
|
|
465
|
+
"shape": "S2t"
|
|
438
466
|
},
|
|
439
467
|
"NetworkType": {},
|
|
440
468
|
"DBSystemId": {},
|
|
@@ -446,7 +474,7 @@
|
|
|
446
474
|
"type": "structure",
|
|
447
475
|
"members": {
|
|
448
476
|
"DBCluster": {
|
|
449
|
-
"shape": "
|
|
477
|
+
"shape": "S2w"
|
|
450
478
|
}
|
|
451
479
|
}
|
|
452
480
|
}
|
|
@@ -475,7 +503,7 @@
|
|
|
475
503
|
}
|
|
476
504
|
},
|
|
477
505
|
"output": {
|
|
478
|
-
"shape": "
|
|
506
|
+
"shape": "S3e",
|
|
479
507
|
"resultWrapper": "CreateDBClusterEndpointResult"
|
|
480
508
|
}
|
|
481
509
|
},
|
|
@@ -550,10 +578,10 @@
|
|
|
550
578
|
"MasterUsername": {},
|
|
551
579
|
"MasterUserPassword": {},
|
|
552
580
|
"DBSecurityGroups": {
|
|
553
|
-
"shape": "
|
|
581
|
+
"shape": "S3k"
|
|
554
582
|
},
|
|
555
583
|
"VpcSecurityGroupIds": {
|
|
556
|
-
"shape": "
|
|
584
|
+
"shape": "S2q"
|
|
557
585
|
},
|
|
558
586
|
"AvailabilityZone": {},
|
|
559
587
|
"DBSubnetGroupName": {},
|
|
@@ -618,7 +646,7 @@
|
|
|
618
646
|
"type": "integer"
|
|
619
647
|
},
|
|
620
648
|
"EnableCloudwatchLogsExports": {
|
|
621
|
-
"shape": "
|
|
649
|
+
"shape": "S2n"
|
|
622
650
|
},
|
|
623
651
|
"ProcessorFeatures": {
|
|
624
652
|
"shape": "S1c"
|
|
@@ -645,7 +673,7 @@
|
|
|
645
673
|
"type": "structure",
|
|
646
674
|
"members": {
|
|
647
675
|
"DBInstance": {
|
|
648
|
-
"shape": "
|
|
676
|
+
"shape": "S3m"
|
|
649
677
|
}
|
|
650
678
|
}
|
|
651
679
|
}
|
|
@@ -684,7 +712,7 @@
|
|
|
684
712
|
},
|
|
685
713
|
"DBSubnetGroupName": {},
|
|
686
714
|
"VpcSecurityGroupIds": {
|
|
687
|
-
"shape": "
|
|
715
|
+
"shape": "S2q"
|
|
688
716
|
},
|
|
689
717
|
"StorageType": {},
|
|
690
718
|
"CopyTagsToSnapshot": {
|
|
@@ -707,7 +735,7 @@
|
|
|
707
735
|
"type": "integer"
|
|
708
736
|
},
|
|
709
737
|
"EnableCloudwatchLogsExports": {
|
|
710
|
-
"shape": "
|
|
738
|
+
"shape": "S2n"
|
|
711
739
|
},
|
|
712
740
|
"ProcessorFeatures": {
|
|
713
741
|
"shape": "S1c"
|
|
@@ -737,7 +765,7 @@
|
|
|
737
765
|
"type": "structure",
|
|
738
766
|
"members": {
|
|
739
767
|
"DBInstance": {
|
|
740
|
-
"shape": "
|
|
768
|
+
"shape": "S3m"
|
|
741
769
|
}
|
|
742
770
|
}
|
|
743
771
|
}
|
|
@@ -783,7 +811,7 @@
|
|
|
783
811
|
"DBProxyName": {},
|
|
784
812
|
"EngineFamily": {},
|
|
785
813
|
"Auth": {
|
|
786
|
-
"shape": "
|
|
814
|
+
"shape": "S4f"
|
|
787
815
|
},
|
|
788
816
|
"RoleArn": {},
|
|
789
817
|
"VpcSubnetIds": {
|
|
@@ -811,7 +839,7 @@
|
|
|
811
839
|
"type": "structure",
|
|
812
840
|
"members": {
|
|
813
841
|
"DBProxy": {
|
|
814
|
-
"shape": "
|
|
842
|
+
"shape": "S4k"
|
|
815
843
|
}
|
|
816
844
|
}
|
|
817
845
|
}
|
|
@@ -844,7 +872,7 @@
|
|
|
844
872
|
"type": "structure",
|
|
845
873
|
"members": {
|
|
846
874
|
"DBProxyEndpoint": {
|
|
847
|
-
"shape": "
|
|
875
|
+
"shape": "S4t"
|
|
848
876
|
}
|
|
849
877
|
}
|
|
850
878
|
}
|
|
@@ -911,7 +939,7 @@
|
|
|
911
939
|
"DBSubnetGroupName": {},
|
|
912
940
|
"DBSubnetGroupDescription": {},
|
|
913
941
|
"SubnetIds": {
|
|
914
|
-
"shape": "
|
|
942
|
+
"shape": "S50"
|
|
915
943
|
},
|
|
916
944
|
"Tags": {
|
|
917
945
|
"shape": "Sb"
|
|
@@ -923,7 +951,7 @@
|
|
|
923
951
|
"type": "structure",
|
|
924
952
|
"members": {
|
|
925
953
|
"DBSubnetGroup": {
|
|
926
|
-
"shape": "
|
|
954
|
+
"shape": "S3q"
|
|
927
955
|
}
|
|
928
956
|
}
|
|
929
957
|
}
|
|
@@ -985,7 +1013,7 @@
|
|
|
985
1013
|
"type": "structure",
|
|
986
1014
|
"members": {
|
|
987
1015
|
"GlobalCluster": {
|
|
988
|
-
"shape": "
|
|
1016
|
+
"shape": "S56"
|
|
989
1017
|
}
|
|
990
1018
|
}
|
|
991
1019
|
}
|
|
@@ -1019,6 +1047,29 @@
|
|
|
1019
1047
|
}
|
|
1020
1048
|
}
|
|
1021
1049
|
},
|
|
1050
|
+
"DeleteBlueGreenDeployment": {
|
|
1051
|
+
"input": {
|
|
1052
|
+
"type": "structure",
|
|
1053
|
+
"required": [
|
|
1054
|
+
"BlueGreenDeploymentIdentifier"
|
|
1055
|
+
],
|
|
1056
|
+
"members": {
|
|
1057
|
+
"BlueGreenDeploymentIdentifier": {},
|
|
1058
|
+
"DeleteTarget": {
|
|
1059
|
+
"type": "boolean"
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
"output": {
|
|
1064
|
+
"resultWrapper": "DeleteBlueGreenDeploymentResult",
|
|
1065
|
+
"type": "structure",
|
|
1066
|
+
"members": {
|
|
1067
|
+
"BlueGreenDeployment": {
|
|
1068
|
+
"shape": "S1w"
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1022
1073
|
"DeleteCustomDBEngineVersion": {
|
|
1023
1074
|
"input": {
|
|
1024
1075
|
"type": "structure",
|
|
@@ -1032,7 +1083,7 @@
|
|
|
1032
1083
|
}
|
|
1033
1084
|
},
|
|
1034
1085
|
"output": {
|
|
1035
|
-
"shape": "
|
|
1086
|
+
"shape": "S2f",
|
|
1036
1087
|
"resultWrapper": "DeleteCustomDBEngineVersionResult"
|
|
1037
1088
|
}
|
|
1038
1089
|
},
|
|
@@ -1055,7 +1106,7 @@
|
|
|
1055
1106
|
"type": "structure",
|
|
1056
1107
|
"members": {
|
|
1057
1108
|
"DBCluster": {
|
|
1058
|
-
"shape": "
|
|
1109
|
+
"shape": "S2w"
|
|
1059
1110
|
}
|
|
1060
1111
|
}
|
|
1061
1112
|
}
|
|
@@ -1071,7 +1122,7 @@
|
|
|
1071
1122
|
}
|
|
1072
1123
|
},
|
|
1073
1124
|
"output": {
|
|
1074
|
-
"shape": "
|
|
1125
|
+
"shape": "S3e",
|
|
1075
1126
|
"resultWrapper": "DeleteDBClusterEndpointResult"
|
|
1076
1127
|
}
|
|
1077
1128
|
},
|
|
@@ -1128,7 +1179,7 @@
|
|
|
1128
1179
|
"type": "structure",
|
|
1129
1180
|
"members": {
|
|
1130
1181
|
"DBInstance": {
|
|
1131
|
-
"shape": "
|
|
1182
|
+
"shape": "S3m"
|
|
1132
1183
|
}
|
|
1133
1184
|
}
|
|
1134
1185
|
}
|
|
@@ -1146,7 +1197,7 @@
|
|
|
1146
1197
|
"type": "structure",
|
|
1147
1198
|
"members": {
|
|
1148
1199
|
"DBInstanceAutomatedBackup": {
|
|
1149
|
-
"shape": "
|
|
1200
|
+
"shape": "S5r"
|
|
1150
1201
|
}
|
|
1151
1202
|
}
|
|
1152
1203
|
}
|
|
@@ -1177,7 +1228,7 @@
|
|
|
1177
1228
|
"type": "structure",
|
|
1178
1229
|
"members": {
|
|
1179
1230
|
"DBProxy": {
|
|
1180
|
-
"shape": "
|
|
1231
|
+
"shape": "S4k"
|
|
1181
1232
|
}
|
|
1182
1233
|
}
|
|
1183
1234
|
}
|
|
@@ -1197,7 +1248,7 @@
|
|
|
1197
1248
|
"type": "structure",
|
|
1198
1249
|
"members": {
|
|
1199
1250
|
"DBProxyEndpoint": {
|
|
1200
|
-
"shape": "
|
|
1251
|
+
"shape": "S4t"
|
|
1201
1252
|
}
|
|
1202
1253
|
}
|
|
1203
1254
|
}
|
|
@@ -1279,7 +1330,7 @@
|
|
|
1279
1330
|
"type": "structure",
|
|
1280
1331
|
"members": {
|
|
1281
1332
|
"GlobalCluster": {
|
|
1282
|
-
"shape": "
|
|
1333
|
+
"shape": "S56"
|
|
1283
1334
|
}
|
|
1284
1335
|
}
|
|
1285
1336
|
}
|
|
@@ -1347,13 +1398,41 @@
|
|
|
1347
1398
|
}
|
|
1348
1399
|
}
|
|
1349
1400
|
},
|
|
1401
|
+
"DescribeBlueGreenDeployments": {
|
|
1402
|
+
"input": {
|
|
1403
|
+
"type": "structure",
|
|
1404
|
+
"members": {
|
|
1405
|
+
"BlueGreenDeploymentIdentifier": {},
|
|
1406
|
+
"Filters": {
|
|
1407
|
+
"shape": "S6f"
|
|
1408
|
+
},
|
|
1409
|
+
"Marker": {},
|
|
1410
|
+
"MaxRecords": {
|
|
1411
|
+
"type": "integer"
|
|
1412
|
+
}
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"output": {
|
|
1416
|
+
"resultWrapper": "DescribeBlueGreenDeploymentsResult",
|
|
1417
|
+
"type": "structure",
|
|
1418
|
+
"members": {
|
|
1419
|
+
"BlueGreenDeployments": {
|
|
1420
|
+
"type": "list",
|
|
1421
|
+
"member": {
|
|
1422
|
+
"shape": "S1w"
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"Marker": {}
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1350
1429
|
"DescribeCertificates": {
|
|
1351
1430
|
"input": {
|
|
1352
1431
|
"type": "structure",
|
|
1353
1432
|
"members": {
|
|
1354
1433
|
"CertificateIdentifier": {},
|
|
1355
1434
|
"Filters": {
|
|
1356
|
-
"shape": "
|
|
1435
|
+
"shape": "S6f"
|
|
1357
1436
|
},
|
|
1358
1437
|
"MaxRecords": {
|
|
1359
1438
|
"type": "integer"
|
|
@@ -1368,7 +1447,7 @@
|
|
|
1368
1447
|
"Certificates": {
|
|
1369
1448
|
"type": "list",
|
|
1370
1449
|
"member": {
|
|
1371
|
-
"shape": "
|
|
1450
|
+
"shape": "S6o",
|
|
1372
1451
|
"locationName": "Certificate"
|
|
1373
1452
|
}
|
|
1374
1453
|
},
|
|
@@ -1386,7 +1465,7 @@
|
|
|
1386
1465
|
"DBClusterIdentifier": {},
|
|
1387
1466
|
"BacktrackIdentifier": {},
|
|
1388
1467
|
"Filters": {
|
|
1389
|
-
"shape": "
|
|
1468
|
+
"shape": "S6f"
|
|
1390
1469
|
},
|
|
1391
1470
|
"MaxRecords": {
|
|
1392
1471
|
"type": "integer"
|
|
@@ -1416,7 +1495,7 @@
|
|
|
1416
1495
|
"DBClusterIdentifier": {},
|
|
1417
1496
|
"DBClusterEndpointIdentifier": {},
|
|
1418
1497
|
"Filters": {
|
|
1419
|
-
"shape": "
|
|
1498
|
+
"shape": "S6f"
|
|
1420
1499
|
},
|
|
1421
1500
|
"MaxRecords": {
|
|
1422
1501
|
"type": "integer"
|
|
@@ -1432,7 +1511,7 @@
|
|
|
1432
1511
|
"DBClusterEndpoints": {
|
|
1433
1512
|
"type": "list",
|
|
1434
1513
|
"member": {
|
|
1435
|
-
"shape": "
|
|
1514
|
+
"shape": "S3e",
|
|
1436
1515
|
"locationName": "DBClusterEndpointList"
|
|
1437
1516
|
}
|
|
1438
1517
|
}
|
|
@@ -1445,7 +1524,7 @@
|
|
|
1445
1524
|
"members": {
|
|
1446
1525
|
"DBClusterParameterGroupName": {},
|
|
1447
1526
|
"Filters": {
|
|
1448
|
-
"shape": "
|
|
1527
|
+
"shape": "S6f"
|
|
1449
1528
|
},
|
|
1450
1529
|
"MaxRecords": {
|
|
1451
1530
|
"type": "integer"
|
|
@@ -1478,7 +1557,7 @@
|
|
|
1478
1557
|
"DBClusterParameterGroupName": {},
|
|
1479
1558
|
"Source": {},
|
|
1480
1559
|
"Filters": {
|
|
1481
|
-
"shape": "
|
|
1560
|
+
"shape": "S6f"
|
|
1482
1561
|
},
|
|
1483
1562
|
"MaxRecords": {
|
|
1484
1563
|
"type": "integer"
|
|
@@ -1491,7 +1570,7 @@
|
|
|
1491
1570
|
"type": "structure",
|
|
1492
1571
|
"members": {
|
|
1493
1572
|
"Parameters": {
|
|
1494
|
-
"shape": "
|
|
1573
|
+
"shape": "S70"
|
|
1495
1574
|
},
|
|
1496
1575
|
"Marker": {}
|
|
1497
1576
|
}
|
|
@@ -1512,7 +1591,7 @@
|
|
|
1512
1591
|
"type": "structure",
|
|
1513
1592
|
"members": {
|
|
1514
1593
|
"DBClusterSnapshotAttributesResult": {
|
|
1515
|
-
"shape": "
|
|
1594
|
+
"shape": "S75"
|
|
1516
1595
|
}
|
|
1517
1596
|
}
|
|
1518
1597
|
}
|
|
@@ -1525,7 +1604,7 @@
|
|
|
1525
1604
|
"DBClusterSnapshotIdentifier": {},
|
|
1526
1605
|
"SnapshotType": {},
|
|
1527
1606
|
"Filters": {
|
|
1528
|
-
"shape": "
|
|
1607
|
+
"shape": "S6f"
|
|
1529
1608
|
},
|
|
1530
1609
|
"MaxRecords": {
|
|
1531
1610
|
"type": "integer"
|
|
@@ -1560,7 +1639,7 @@
|
|
|
1560
1639
|
"members": {
|
|
1561
1640
|
"DBClusterIdentifier": {},
|
|
1562
1641
|
"Filters": {
|
|
1563
|
-
"shape": "
|
|
1642
|
+
"shape": "S6f"
|
|
1564
1643
|
},
|
|
1565
1644
|
"MaxRecords": {
|
|
1566
1645
|
"type": "integer"
|
|
@@ -1579,7 +1658,7 @@
|
|
|
1579
1658
|
"DBClusters": {
|
|
1580
1659
|
"type": "list",
|
|
1581
1660
|
"member": {
|
|
1582
|
-
"shape": "
|
|
1661
|
+
"shape": "S2w",
|
|
1583
1662
|
"locationName": "DBCluster"
|
|
1584
1663
|
}
|
|
1585
1664
|
}
|
|
@@ -1594,7 +1673,7 @@
|
|
|
1594
1673
|
"EngineVersion": {},
|
|
1595
1674
|
"DBParameterGroupFamily": {},
|
|
1596
1675
|
"Filters": {
|
|
1597
|
-
"shape": "
|
|
1676
|
+
"shape": "S6f"
|
|
1598
1677
|
},
|
|
1599
1678
|
"MaxRecords": {
|
|
1600
1679
|
"type": "integer"
|
|
@@ -1622,7 +1701,7 @@
|
|
|
1622
1701
|
"DBEngineVersions": {
|
|
1623
1702
|
"type": "list",
|
|
1624
1703
|
"member": {
|
|
1625
|
-
"shape": "
|
|
1704
|
+
"shape": "S2f",
|
|
1626
1705
|
"locationName": "DBEngineVersion"
|
|
1627
1706
|
}
|
|
1628
1707
|
}
|
|
@@ -1636,7 +1715,7 @@
|
|
|
1636
1715
|
"DbiResourceId": {},
|
|
1637
1716
|
"DBInstanceIdentifier": {},
|
|
1638
1717
|
"Filters": {
|
|
1639
|
-
"shape": "
|
|
1718
|
+
"shape": "S6f"
|
|
1640
1719
|
},
|
|
1641
1720
|
"MaxRecords": {
|
|
1642
1721
|
"type": "integer"
|
|
@@ -1653,7 +1732,7 @@
|
|
|
1653
1732
|
"DBInstanceAutomatedBackups": {
|
|
1654
1733
|
"type": "list",
|
|
1655
1734
|
"member": {
|
|
1656
|
-
"shape": "
|
|
1735
|
+
"shape": "S5r",
|
|
1657
1736
|
"locationName": "DBInstanceAutomatedBackup"
|
|
1658
1737
|
}
|
|
1659
1738
|
}
|
|
@@ -1666,7 +1745,7 @@
|
|
|
1666
1745
|
"members": {
|
|
1667
1746
|
"DBInstanceIdentifier": {},
|
|
1668
1747
|
"Filters": {
|
|
1669
|
-
"shape": "
|
|
1748
|
+
"shape": "S6f"
|
|
1670
1749
|
},
|
|
1671
1750
|
"MaxRecords": {
|
|
1672
1751
|
"type": "integer"
|
|
@@ -1682,7 +1761,7 @@
|
|
|
1682
1761
|
"DBInstances": {
|
|
1683
1762
|
"type": "list",
|
|
1684
1763
|
"member": {
|
|
1685
|
-
"shape": "
|
|
1764
|
+
"shape": "S3m",
|
|
1686
1765
|
"locationName": "DBInstance"
|
|
1687
1766
|
}
|
|
1688
1767
|
}
|
|
@@ -1705,7 +1784,7 @@
|
|
|
1705
1784
|
"type": "long"
|
|
1706
1785
|
},
|
|
1707
1786
|
"Filters": {
|
|
1708
|
-
"shape": "
|
|
1787
|
+
"shape": "S6f"
|
|
1709
1788
|
},
|
|
1710
1789
|
"MaxRecords": {
|
|
1711
1790
|
"type": "integer"
|
|
@@ -1743,7 +1822,7 @@
|
|
|
1743
1822
|
"members": {
|
|
1744
1823
|
"DBParameterGroupName": {},
|
|
1745
1824
|
"Filters": {
|
|
1746
|
-
"shape": "
|
|
1825
|
+
"shape": "S6f"
|
|
1747
1826
|
},
|
|
1748
1827
|
"MaxRecords": {
|
|
1749
1828
|
"type": "integer"
|
|
@@ -1776,7 +1855,7 @@
|
|
|
1776
1855
|
"DBParameterGroupName": {},
|
|
1777
1856
|
"Source": {},
|
|
1778
1857
|
"Filters": {
|
|
1779
|
-
"shape": "
|
|
1858
|
+
"shape": "S6f"
|
|
1780
1859
|
},
|
|
1781
1860
|
"MaxRecords": {
|
|
1782
1861
|
"type": "integer"
|
|
@@ -1789,7 +1868,7 @@
|
|
|
1789
1868
|
"type": "structure",
|
|
1790
1869
|
"members": {
|
|
1791
1870
|
"Parameters": {
|
|
1792
|
-
"shape": "
|
|
1871
|
+
"shape": "S70"
|
|
1793
1872
|
},
|
|
1794
1873
|
"Marker": {}
|
|
1795
1874
|
}
|
|
@@ -1801,7 +1880,7 @@
|
|
|
1801
1880
|
"members": {
|
|
1802
1881
|
"DBProxyName": {},
|
|
1803
1882
|
"Filters": {
|
|
1804
|
-
"shape": "
|
|
1883
|
+
"shape": "S6f"
|
|
1805
1884
|
},
|
|
1806
1885
|
"Marker": {},
|
|
1807
1886
|
"MaxRecords": {
|
|
@@ -1816,7 +1895,7 @@
|
|
|
1816
1895
|
"DBProxies": {
|
|
1817
1896
|
"type": "list",
|
|
1818
1897
|
"member": {
|
|
1819
|
-
"shape": "
|
|
1898
|
+
"shape": "S4k"
|
|
1820
1899
|
}
|
|
1821
1900
|
},
|
|
1822
1901
|
"Marker": {}
|
|
@@ -1830,7 +1909,7 @@
|
|
|
1830
1909
|
"DBProxyName": {},
|
|
1831
1910
|
"DBProxyEndpointName": {},
|
|
1832
1911
|
"Filters": {
|
|
1833
|
-
"shape": "
|
|
1912
|
+
"shape": "S6f"
|
|
1834
1913
|
},
|
|
1835
1914
|
"Marker": {},
|
|
1836
1915
|
"MaxRecords": {
|
|
@@ -1845,7 +1924,7 @@
|
|
|
1845
1924
|
"DBProxyEndpoints": {
|
|
1846
1925
|
"type": "list",
|
|
1847
1926
|
"member": {
|
|
1848
|
-
"shape": "
|
|
1927
|
+
"shape": "S4t"
|
|
1849
1928
|
}
|
|
1850
1929
|
},
|
|
1851
1930
|
"Marker": {}
|
|
@@ -1862,7 +1941,7 @@
|
|
|
1862
1941
|
"DBProxyName": {},
|
|
1863
1942
|
"TargetGroupName": {},
|
|
1864
1943
|
"Filters": {
|
|
1865
|
-
"shape": "
|
|
1944
|
+
"shape": "S6f"
|
|
1866
1945
|
},
|
|
1867
1946
|
"Marker": {},
|
|
1868
1947
|
"MaxRecords": {
|
|
@@ -1877,7 +1956,7 @@
|
|
|
1877
1956
|
"TargetGroups": {
|
|
1878
1957
|
"type": "list",
|
|
1879
1958
|
"member": {
|
|
1880
|
-
"shape": "
|
|
1959
|
+
"shape": "S86"
|
|
1881
1960
|
}
|
|
1882
1961
|
},
|
|
1883
1962
|
"Marker": {}
|
|
@@ -1894,7 +1973,7 @@
|
|
|
1894
1973
|
"DBProxyName": {},
|
|
1895
1974
|
"TargetGroupName": {},
|
|
1896
1975
|
"Filters": {
|
|
1897
|
-
"shape": "
|
|
1976
|
+
"shape": "S6f"
|
|
1898
1977
|
},
|
|
1899
1978
|
"Marker": {},
|
|
1900
1979
|
"MaxRecords": {
|
|
@@ -1907,7 +1986,7 @@
|
|
|
1907
1986
|
"type": "structure",
|
|
1908
1987
|
"members": {
|
|
1909
1988
|
"Targets": {
|
|
1910
|
-
"shape": "
|
|
1989
|
+
"shape": "S8a"
|
|
1911
1990
|
},
|
|
1912
1991
|
"Marker": {}
|
|
1913
1992
|
}
|
|
@@ -1919,7 +1998,7 @@
|
|
|
1919
1998
|
"members": {
|
|
1920
1999
|
"DBSecurityGroupName": {},
|
|
1921
2000
|
"Filters": {
|
|
1922
|
-
"shape": "
|
|
2001
|
+
"shape": "S6f"
|
|
1923
2002
|
},
|
|
1924
2003
|
"MaxRecords": {
|
|
1925
2004
|
"type": "integer"
|
|
@@ -1957,7 +2036,7 @@
|
|
|
1957
2036
|
"type": "structure",
|
|
1958
2037
|
"members": {
|
|
1959
2038
|
"DBSnapshotAttributesResult": {
|
|
1960
|
-
"shape": "
|
|
2039
|
+
"shape": "S8m"
|
|
1961
2040
|
}
|
|
1962
2041
|
}
|
|
1963
2042
|
}
|
|
@@ -1970,7 +2049,7 @@
|
|
|
1970
2049
|
"DBSnapshotIdentifier": {},
|
|
1971
2050
|
"SnapshotType": {},
|
|
1972
2051
|
"Filters": {
|
|
1973
|
-
"shape": "
|
|
2052
|
+
"shape": "S6f"
|
|
1974
2053
|
},
|
|
1975
2054
|
"MaxRecords": {
|
|
1976
2055
|
"type": "integer"
|
|
@@ -2006,7 +2085,7 @@
|
|
|
2006
2085
|
"members": {
|
|
2007
2086
|
"DBSubnetGroupName": {},
|
|
2008
2087
|
"Filters": {
|
|
2009
|
-
"shape": "
|
|
2088
|
+
"shape": "S6f"
|
|
2010
2089
|
},
|
|
2011
2090
|
"MaxRecords": {
|
|
2012
2091
|
"type": "integer"
|
|
@@ -2022,7 +2101,7 @@
|
|
|
2022
2101
|
"DBSubnetGroups": {
|
|
2023
2102
|
"type": "list",
|
|
2024
2103
|
"member": {
|
|
2025
|
-
"shape": "
|
|
2104
|
+
"shape": "S3q",
|
|
2026
2105
|
"locationName": "DBSubnetGroup"
|
|
2027
2106
|
}
|
|
2028
2107
|
}
|
|
@@ -2038,7 +2117,7 @@
|
|
|
2038
2117
|
"members": {
|
|
2039
2118
|
"DBParameterGroupFamily": {},
|
|
2040
2119
|
"Filters": {
|
|
2041
|
-
"shape": "
|
|
2120
|
+
"shape": "S6f"
|
|
2042
2121
|
},
|
|
2043
2122
|
"MaxRecords": {
|
|
2044
2123
|
"type": "integer"
|
|
@@ -2051,7 +2130,7 @@
|
|
|
2051
2130
|
"type": "structure",
|
|
2052
2131
|
"members": {
|
|
2053
2132
|
"EngineDefaults": {
|
|
2054
|
-
"shape": "
|
|
2133
|
+
"shape": "S8x"
|
|
2055
2134
|
}
|
|
2056
2135
|
}
|
|
2057
2136
|
}
|
|
@@ -2065,7 +2144,7 @@
|
|
|
2065
2144
|
"members": {
|
|
2066
2145
|
"DBParameterGroupFamily": {},
|
|
2067
2146
|
"Filters": {
|
|
2068
|
-
"shape": "
|
|
2147
|
+
"shape": "S6f"
|
|
2069
2148
|
},
|
|
2070
2149
|
"MaxRecords": {
|
|
2071
2150
|
"type": "integer"
|
|
@@ -2078,7 +2157,7 @@
|
|
|
2078
2157
|
"type": "structure",
|
|
2079
2158
|
"members": {
|
|
2080
2159
|
"EngineDefaults": {
|
|
2081
|
-
"shape": "
|
|
2160
|
+
"shape": "S8x"
|
|
2082
2161
|
}
|
|
2083
2162
|
}
|
|
2084
2163
|
}
|
|
@@ -2089,7 +2168,7 @@
|
|
|
2089
2168
|
"members": {
|
|
2090
2169
|
"SourceType": {},
|
|
2091
2170
|
"Filters": {
|
|
2092
|
-
"shape": "
|
|
2171
|
+
"shape": "S6f"
|
|
2093
2172
|
}
|
|
2094
2173
|
}
|
|
2095
2174
|
},
|
|
@@ -2120,7 +2199,7 @@
|
|
|
2120
2199
|
"members": {
|
|
2121
2200
|
"SubscriptionName": {},
|
|
2122
2201
|
"Filters": {
|
|
2123
|
-
"shape": "
|
|
2202
|
+
"shape": "S6f"
|
|
2124
2203
|
},
|
|
2125
2204
|
"MaxRecords": {
|
|
2126
2205
|
"type": "integer"
|
|
@@ -2162,7 +2241,7 @@
|
|
|
2162
2241
|
"shape": "S8"
|
|
2163
2242
|
},
|
|
2164
2243
|
"Filters": {
|
|
2165
|
-
"shape": "
|
|
2244
|
+
"shape": "S6f"
|
|
2166
2245
|
},
|
|
2167
2246
|
"MaxRecords": {
|
|
2168
2247
|
"type": "integer"
|
|
@@ -2204,7 +2283,7 @@
|
|
|
2204
2283
|
"ExportTaskIdentifier": {},
|
|
2205
2284
|
"SourceArn": {},
|
|
2206
2285
|
"Filters": {
|
|
2207
|
-
"shape": "
|
|
2286
|
+
"shape": "S6f"
|
|
2208
2287
|
},
|
|
2209
2288
|
"Marker": {},
|
|
2210
2289
|
"MaxRecords": {
|
|
@@ -2234,7 +2313,7 @@
|
|
|
2234
2313
|
"members": {
|
|
2235
2314
|
"GlobalClusterIdentifier": {},
|
|
2236
2315
|
"Filters": {
|
|
2237
|
-
"shape": "
|
|
2316
|
+
"shape": "S6f"
|
|
2238
2317
|
},
|
|
2239
2318
|
"MaxRecords": {
|
|
2240
2319
|
"type": "integer"
|
|
@@ -2250,7 +2329,7 @@
|
|
|
2250
2329
|
"GlobalClusters": {
|
|
2251
2330
|
"type": "list",
|
|
2252
2331
|
"member": {
|
|
2253
|
-
"shape": "
|
|
2332
|
+
"shape": "S56",
|
|
2254
2333
|
"locationName": "GlobalClusterMember"
|
|
2255
2334
|
}
|
|
2256
2335
|
}
|
|
@@ -2267,7 +2346,7 @@
|
|
|
2267
2346
|
"EngineName": {},
|
|
2268
2347
|
"MajorEngineVersion": {},
|
|
2269
2348
|
"Filters": {
|
|
2270
|
-
"shape": "
|
|
2349
|
+
"shape": "S6f"
|
|
2271
2350
|
},
|
|
2272
2351
|
"MaxRecords": {
|
|
2273
2352
|
"type": "integer"
|
|
@@ -2380,7 +2459,7 @@
|
|
|
2380
2459
|
"members": {
|
|
2381
2460
|
"OptionGroupName": {},
|
|
2382
2461
|
"Filters": {
|
|
2383
|
-
"shape": "
|
|
2462
|
+
"shape": "S6f"
|
|
2384
2463
|
},
|
|
2385
2464
|
"Marker": {},
|
|
2386
2465
|
"MaxRecords": {
|
|
@@ -2421,7 +2500,7 @@
|
|
|
2421
2500
|
"type": "boolean"
|
|
2422
2501
|
},
|
|
2423
2502
|
"Filters": {
|
|
2424
|
-
"shape": "
|
|
2503
|
+
"shape": "S6f"
|
|
2425
2504
|
},
|
|
2426
2505
|
"MaxRecords": {
|
|
2427
2506
|
"type": "integer"
|
|
@@ -2447,7 +2526,7 @@
|
|
|
2447
2526
|
"AvailabilityZones": {
|
|
2448
2527
|
"type": "list",
|
|
2449
2528
|
"member": {
|
|
2450
|
-
"shape": "
|
|
2529
|
+
"shape": "S3t",
|
|
2451
2530
|
"locationName": "AvailabilityZone"
|
|
2452
2531
|
}
|
|
2453
2532
|
},
|
|
@@ -2495,10 +2574,10 @@
|
|
|
2495
2574
|
"type": "double"
|
|
2496
2575
|
},
|
|
2497
2576
|
"AvailableProcessorFeatures": {
|
|
2498
|
-
"shape": "
|
|
2577
|
+
"shape": "Sa2"
|
|
2499
2578
|
},
|
|
2500
2579
|
"SupportedEngineModes": {
|
|
2501
|
-
"shape": "
|
|
2580
|
+
"shape": "S2k"
|
|
2502
2581
|
},
|
|
2503
2582
|
"SupportsStorageAutoscaling": {
|
|
2504
2583
|
"type": "boolean"
|
|
@@ -2551,7 +2630,7 @@
|
|
|
2551
2630
|
"members": {
|
|
2552
2631
|
"ResourceIdentifier": {},
|
|
2553
2632
|
"Filters": {
|
|
2554
|
-
"shape": "
|
|
2633
|
+
"shape": "S6f"
|
|
2555
2634
|
},
|
|
2556
2635
|
"Marker": {},
|
|
2557
2636
|
"MaxRecords": {
|
|
@@ -2589,7 +2668,7 @@
|
|
|
2589
2668
|
},
|
|
2590
2669
|
"LeaseId": {},
|
|
2591
2670
|
"Filters": {
|
|
2592
|
-
"shape": "
|
|
2671
|
+
"shape": "S6f"
|
|
2593
2672
|
},
|
|
2594
2673
|
"MaxRecords": {
|
|
2595
2674
|
"type": "integer"
|
|
@@ -2605,7 +2684,7 @@
|
|
|
2605
2684
|
"ReservedDBInstances": {
|
|
2606
2685
|
"type": "list",
|
|
2607
2686
|
"member": {
|
|
2608
|
-
"shape": "
|
|
2687
|
+
"shape": "Sab",
|
|
2609
2688
|
"locationName": "ReservedDBInstance"
|
|
2610
2689
|
}
|
|
2611
2690
|
}
|
|
@@ -2625,7 +2704,7 @@
|
|
|
2625
2704
|
"type": "boolean"
|
|
2626
2705
|
},
|
|
2627
2706
|
"Filters": {
|
|
2628
|
-
"shape": "
|
|
2707
|
+
"shape": "S6f"
|
|
2629
2708
|
},
|
|
2630
2709
|
"MaxRecords": {
|
|
2631
2710
|
"type": "integer"
|
|
@@ -2662,7 +2741,7 @@
|
|
|
2662
2741
|
"type": "boolean"
|
|
2663
2742
|
},
|
|
2664
2743
|
"RecurringCharges": {
|
|
2665
|
-
"shape": "
|
|
2744
|
+
"shape": "Sad"
|
|
2666
2745
|
}
|
|
2667
2746
|
},
|
|
2668
2747
|
"wrapper": true
|
|
@@ -2681,7 +2760,7 @@
|
|
|
2681
2760
|
},
|
|
2682
2761
|
"Marker": {},
|
|
2683
2762
|
"Filters": {
|
|
2684
|
-
"shape": "
|
|
2763
|
+
"shape": "S6f"
|
|
2685
2764
|
}
|
|
2686
2765
|
}
|
|
2687
2766
|
},
|
|
@@ -2733,28 +2812,28 @@
|
|
|
2733
2812
|
"members": {
|
|
2734
2813
|
"StorageType": {},
|
|
2735
2814
|
"StorageSize": {
|
|
2736
|
-
"shape": "
|
|
2815
|
+
"shape": "Sas"
|
|
2737
2816
|
},
|
|
2738
2817
|
"ProvisionedIops": {
|
|
2739
|
-
"shape": "
|
|
2818
|
+
"shape": "Sas"
|
|
2740
2819
|
},
|
|
2741
2820
|
"IopsToStorageRatio": {
|
|
2742
|
-
"shape": "
|
|
2821
|
+
"shape": "Sau"
|
|
2743
2822
|
},
|
|
2744
2823
|
"SupportsStorageAutoscaling": {
|
|
2745
2824
|
"type": "boolean"
|
|
2746
2825
|
},
|
|
2747
2826
|
"ProvisionedStorageThroughput": {
|
|
2748
|
-
"shape": "
|
|
2827
|
+
"shape": "Sas"
|
|
2749
2828
|
},
|
|
2750
2829
|
"StorageThroughputToIopsRatio": {
|
|
2751
|
-
"shape": "
|
|
2830
|
+
"shape": "Sau"
|
|
2752
2831
|
}
|
|
2753
2832
|
}
|
|
2754
2833
|
}
|
|
2755
2834
|
},
|
|
2756
2835
|
"ValidProcessorFeatures": {
|
|
2757
|
-
"shape": "
|
|
2836
|
+
"shape": "Sa2"
|
|
2758
2837
|
}
|
|
2759
2838
|
},
|
|
2760
2839
|
"wrapper": true
|
|
@@ -2806,7 +2885,7 @@
|
|
|
2806
2885
|
"type": "structure",
|
|
2807
2886
|
"members": {
|
|
2808
2887
|
"DBCluster": {
|
|
2809
|
-
"shape": "
|
|
2888
|
+
"shape": "S2w"
|
|
2810
2889
|
}
|
|
2811
2890
|
}
|
|
2812
2891
|
}
|
|
@@ -2828,7 +2907,7 @@
|
|
|
2828
2907
|
"type": "structure",
|
|
2829
2908
|
"members": {
|
|
2830
2909
|
"GlobalCluster": {
|
|
2831
|
-
"shape": "
|
|
2910
|
+
"shape": "S56"
|
|
2832
2911
|
}
|
|
2833
2912
|
}
|
|
2834
2913
|
}
|
|
@@ -2842,7 +2921,7 @@
|
|
|
2842
2921
|
"members": {
|
|
2843
2922
|
"ResourceName": {},
|
|
2844
2923
|
"Filters": {
|
|
2845
|
-
"shape": "
|
|
2924
|
+
"shape": "S6f"
|
|
2846
2925
|
}
|
|
2847
2926
|
}
|
|
2848
2927
|
},
|
|
@@ -2894,7 +2973,7 @@
|
|
|
2894
2973
|
"type": "structure",
|
|
2895
2974
|
"members": {
|
|
2896
2975
|
"Certificate": {
|
|
2897
|
-
"shape": "
|
|
2976
|
+
"shape": "S6o"
|
|
2898
2977
|
}
|
|
2899
2978
|
}
|
|
2900
2979
|
}
|
|
@@ -2949,7 +3028,7 @@
|
|
|
2949
3028
|
}
|
|
2950
3029
|
},
|
|
2951
3030
|
"output": {
|
|
2952
|
-
"shape": "
|
|
3031
|
+
"shape": "S2f",
|
|
2953
3032
|
"resultWrapper": "ModifyCustomDBEngineVersionResult"
|
|
2954
3033
|
}
|
|
2955
3034
|
},
|
|
@@ -2970,7 +3049,7 @@
|
|
|
2970
3049
|
},
|
|
2971
3050
|
"DBClusterParameterGroupName": {},
|
|
2972
3051
|
"VpcSecurityGroupIds": {
|
|
2973
|
-
"shape": "
|
|
3052
|
+
"shape": "S2q"
|
|
2974
3053
|
},
|
|
2975
3054
|
"Port": {
|
|
2976
3055
|
"type": "integer"
|
|
@@ -2986,7 +3065,7 @@
|
|
|
2986
3065
|
"type": "long"
|
|
2987
3066
|
},
|
|
2988
3067
|
"CloudwatchLogsExportConfiguration": {
|
|
2989
|
-
"shape": "
|
|
3068
|
+
"shape": "Sbg"
|
|
2990
3069
|
},
|
|
2991
3070
|
"EngineVersion": {},
|
|
2992
3071
|
"AllowMajorVersionUpgrade": {
|
|
@@ -2996,7 +3075,7 @@
|
|
|
2996
3075
|
"Domain": {},
|
|
2997
3076
|
"DomainIAMRoleName": {},
|
|
2998
3077
|
"ScalingConfiguration": {
|
|
2999
|
-
"shape": "
|
|
3078
|
+
"shape": "S2s"
|
|
3000
3079
|
},
|
|
3001
3080
|
"DeletionProtection": {
|
|
3002
3081
|
"type": "boolean"
|
|
@@ -3033,7 +3112,7 @@
|
|
|
3033
3112
|
"type": "integer"
|
|
3034
3113
|
},
|
|
3035
3114
|
"ServerlessV2ScalingConfiguration": {
|
|
3036
|
-
"shape": "
|
|
3115
|
+
"shape": "S2t"
|
|
3037
3116
|
},
|
|
3038
3117
|
"NetworkType": {}
|
|
3039
3118
|
}
|
|
@@ -3043,7 +3122,7 @@
|
|
|
3043
3122
|
"type": "structure",
|
|
3044
3123
|
"members": {
|
|
3045
3124
|
"DBCluster": {
|
|
3046
|
-
"shape": "
|
|
3125
|
+
"shape": "S2w"
|
|
3047
3126
|
}
|
|
3048
3127
|
}
|
|
3049
3128
|
}
|
|
@@ -3066,7 +3145,7 @@
|
|
|
3066
3145
|
}
|
|
3067
3146
|
},
|
|
3068
3147
|
"output": {
|
|
3069
|
-
"shape": "
|
|
3148
|
+
"shape": "S3e",
|
|
3070
3149
|
"resultWrapper": "ModifyDBClusterEndpointResult"
|
|
3071
3150
|
}
|
|
3072
3151
|
},
|
|
@@ -3080,12 +3159,12 @@
|
|
|
3080
3159
|
"members": {
|
|
3081
3160
|
"DBClusterParameterGroupName": {},
|
|
3082
3161
|
"Parameters": {
|
|
3083
|
-
"shape": "
|
|
3162
|
+
"shape": "S70"
|
|
3084
3163
|
}
|
|
3085
3164
|
}
|
|
3086
3165
|
},
|
|
3087
3166
|
"output": {
|
|
3088
|
-
"shape": "
|
|
3167
|
+
"shape": "Sbk",
|
|
3089
3168
|
"resultWrapper": "ModifyDBClusterParameterGroupResult"
|
|
3090
3169
|
}
|
|
3091
3170
|
},
|
|
@@ -3100,10 +3179,10 @@
|
|
|
3100
3179
|
"DBClusterSnapshotIdentifier": {},
|
|
3101
3180
|
"AttributeName": {},
|
|
3102
3181
|
"ValuesToAdd": {
|
|
3103
|
-
"shape": "
|
|
3182
|
+
"shape": "S78"
|
|
3104
3183
|
},
|
|
3105
3184
|
"ValuesToRemove": {
|
|
3106
|
-
"shape": "
|
|
3185
|
+
"shape": "S78"
|
|
3107
3186
|
}
|
|
3108
3187
|
}
|
|
3109
3188
|
},
|
|
@@ -3112,7 +3191,7 @@
|
|
|
3112
3191
|
"type": "structure",
|
|
3113
3192
|
"members": {
|
|
3114
3193
|
"DBClusterSnapshotAttributesResult": {
|
|
3115
|
-
"shape": "
|
|
3194
|
+
"shape": "S75"
|
|
3116
3195
|
}
|
|
3117
3196
|
}
|
|
3118
3197
|
}
|
|
@@ -3131,10 +3210,10 @@
|
|
|
3131
3210
|
"DBInstanceClass": {},
|
|
3132
3211
|
"DBSubnetGroupName": {},
|
|
3133
3212
|
"DBSecurityGroups": {
|
|
3134
|
-
"shape": "
|
|
3213
|
+
"shape": "S3k"
|
|
3135
3214
|
},
|
|
3136
3215
|
"VpcSecurityGroupIds": {
|
|
3137
|
-
"shape": "
|
|
3216
|
+
"shape": "S2q"
|
|
3138
3217
|
},
|
|
3139
3218
|
"ApplyImmediately": {
|
|
3140
3219
|
"type": "boolean"
|
|
@@ -3195,7 +3274,7 @@
|
|
|
3195
3274
|
"type": "integer"
|
|
3196
3275
|
},
|
|
3197
3276
|
"CloudwatchLogsExportConfiguration": {
|
|
3198
|
-
"shape": "
|
|
3277
|
+
"shape": "Sbg"
|
|
3199
3278
|
},
|
|
3200
3279
|
"ProcessorFeatures": {
|
|
3201
3280
|
"shape": "S1c"
|
|
@@ -3232,7 +3311,7 @@
|
|
|
3232
3311
|
"type": "structure",
|
|
3233
3312
|
"members": {
|
|
3234
3313
|
"DBInstance": {
|
|
3235
|
-
"shape": "
|
|
3314
|
+
"shape": "S3m"
|
|
3236
3315
|
}
|
|
3237
3316
|
}
|
|
3238
3317
|
}
|
|
@@ -3247,12 +3326,12 @@
|
|
|
3247
3326
|
"members": {
|
|
3248
3327
|
"DBParameterGroupName": {},
|
|
3249
3328
|
"Parameters": {
|
|
3250
|
-
"shape": "
|
|
3329
|
+
"shape": "S70"
|
|
3251
3330
|
}
|
|
3252
3331
|
}
|
|
3253
3332
|
},
|
|
3254
3333
|
"output": {
|
|
3255
|
-
"shape": "
|
|
3334
|
+
"shape": "Sbr",
|
|
3256
3335
|
"resultWrapper": "ModifyDBParameterGroupResult"
|
|
3257
3336
|
}
|
|
3258
3337
|
},
|
|
@@ -3266,7 +3345,7 @@
|
|
|
3266
3345
|
"DBProxyName": {},
|
|
3267
3346
|
"NewDBProxyName": {},
|
|
3268
3347
|
"Auth": {
|
|
3269
|
-
"shape": "
|
|
3348
|
+
"shape": "S4f"
|
|
3270
3349
|
},
|
|
3271
3350
|
"RequireTLS": {
|
|
3272
3351
|
"type": "boolean"
|
|
@@ -3288,7 +3367,7 @@
|
|
|
3288
3367
|
"type": "structure",
|
|
3289
3368
|
"members": {
|
|
3290
3369
|
"DBProxy": {
|
|
3291
|
-
"shape": "
|
|
3370
|
+
"shape": "S4k"
|
|
3292
3371
|
}
|
|
3293
3372
|
}
|
|
3294
3373
|
}
|
|
@@ -3312,7 +3391,7 @@
|
|
|
3312
3391
|
"type": "structure",
|
|
3313
3392
|
"members": {
|
|
3314
3393
|
"DBProxyEndpoint": {
|
|
3315
|
-
"shape": "
|
|
3394
|
+
"shape": "S4t"
|
|
3316
3395
|
}
|
|
3317
3396
|
}
|
|
3318
3397
|
}
|
|
@@ -3353,7 +3432,7 @@
|
|
|
3353
3432
|
"type": "structure",
|
|
3354
3433
|
"members": {
|
|
3355
3434
|
"DBProxyTargetGroup": {
|
|
3356
|
-
"shape": "
|
|
3435
|
+
"shape": "S86"
|
|
3357
3436
|
}
|
|
3358
3437
|
}
|
|
3359
3438
|
}
|
|
@@ -3391,10 +3470,10 @@
|
|
|
3391
3470
|
"DBSnapshotIdentifier": {},
|
|
3392
3471
|
"AttributeName": {},
|
|
3393
3472
|
"ValuesToAdd": {
|
|
3394
|
-
"shape": "
|
|
3473
|
+
"shape": "S78"
|
|
3395
3474
|
},
|
|
3396
3475
|
"ValuesToRemove": {
|
|
3397
|
-
"shape": "
|
|
3476
|
+
"shape": "S78"
|
|
3398
3477
|
}
|
|
3399
3478
|
}
|
|
3400
3479
|
},
|
|
@@ -3403,7 +3482,7 @@
|
|
|
3403
3482
|
"type": "structure",
|
|
3404
3483
|
"members": {
|
|
3405
3484
|
"DBSnapshotAttributesResult": {
|
|
3406
|
-
"shape": "
|
|
3485
|
+
"shape": "S8m"
|
|
3407
3486
|
}
|
|
3408
3487
|
}
|
|
3409
3488
|
}
|
|
@@ -3419,7 +3498,7 @@
|
|
|
3419
3498
|
"DBSubnetGroupName": {},
|
|
3420
3499
|
"DBSubnetGroupDescription": {},
|
|
3421
3500
|
"SubnetIds": {
|
|
3422
|
-
"shape": "
|
|
3501
|
+
"shape": "S50"
|
|
3423
3502
|
}
|
|
3424
3503
|
}
|
|
3425
3504
|
},
|
|
@@ -3428,7 +3507,7 @@
|
|
|
3428
3507
|
"type": "structure",
|
|
3429
3508
|
"members": {
|
|
3430
3509
|
"DBSubnetGroup": {
|
|
3431
|
-
"shape": "
|
|
3510
|
+
"shape": "S3q"
|
|
3432
3511
|
}
|
|
3433
3512
|
}
|
|
3434
3513
|
}
|
|
@@ -3481,7 +3560,7 @@
|
|
|
3481
3560
|
"type": "structure",
|
|
3482
3561
|
"members": {
|
|
3483
3562
|
"GlobalCluster": {
|
|
3484
|
-
"shape": "
|
|
3563
|
+
"shape": "S56"
|
|
3485
3564
|
}
|
|
3486
3565
|
}
|
|
3487
3566
|
}
|
|
@@ -3509,10 +3588,10 @@
|
|
|
3509
3588
|
},
|
|
3510
3589
|
"OptionVersion": {},
|
|
3511
3590
|
"DBSecurityGroupMemberships": {
|
|
3512
|
-
"shape": "
|
|
3591
|
+
"shape": "S3k"
|
|
3513
3592
|
},
|
|
3514
3593
|
"VpcSecurityGroupMemberships": {
|
|
3515
|
-
"shape": "
|
|
3594
|
+
"shape": "S2q"
|
|
3516
3595
|
},
|
|
3517
3596
|
"OptionSettings": {
|
|
3518
3597
|
"type": "list",
|
|
@@ -3562,7 +3641,7 @@
|
|
|
3562
3641
|
"type": "structure",
|
|
3563
3642
|
"members": {
|
|
3564
3643
|
"DBInstance": {
|
|
3565
|
-
"shape": "
|
|
3644
|
+
"shape": "S3m"
|
|
3566
3645
|
}
|
|
3567
3646
|
}
|
|
3568
3647
|
}
|
|
@@ -3582,7 +3661,7 @@
|
|
|
3582
3661
|
"type": "structure",
|
|
3583
3662
|
"members": {
|
|
3584
3663
|
"DBCluster": {
|
|
3585
|
-
"shape": "
|
|
3664
|
+
"shape": "S2w"
|
|
3586
3665
|
}
|
|
3587
3666
|
}
|
|
3588
3667
|
}
|
|
@@ -3609,7 +3688,7 @@
|
|
|
3609
3688
|
"type": "structure",
|
|
3610
3689
|
"members": {
|
|
3611
3690
|
"ReservedDBInstance": {
|
|
3612
|
-
"shape": "
|
|
3691
|
+
"shape": "Sab"
|
|
3613
3692
|
}
|
|
3614
3693
|
}
|
|
3615
3694
|
}
|
|
@@ -3629,7 +3708,7 @@
|
|
|
3629
3708
|
"type": "structure",
|
|
3630
3709
|
"members": {
|
|
3631
3710
|
"DBCluster": {
|
|
3632
|
-
"shape": "
|
|
3711
|
+
"shape": "S2w"
|
|
3633
3712
|
}
|
|
3634
3713
|
}
|
|
3635
3714
|
}
|
|
@@ -3652,7 +3731,7 @@
|
|
|
3652
3731
|
"type": "structure",
|
|
3653
3732
|
"members": {
|
|
3654
3733
|
"DBInstance": {
|
|
3655
|
-
"shape": "
|
|
3734
|
+
"shape": "S3m"
|
|
3656
3735
|
}
|
|
3657
3736
|
}
|
|
3658
3737
|
}
|
|
@@ -3679,7 +3758,7 @@
|
|
|
3679
3758
|
"type": "structure",
|
|
3680
3759
|
"members": {
|
|
3681
3760
|
"DBProxyTargets": {
|
|
3682
|
-
"shape": "
|
|
3761
|
+
"shape": "S8a"
|
|
3683
3762
|
}
|
|
3684
3763
|
}
|
|
3685
3764
|
}
|
|
@@ -3697,7 +3776,7 @@
|
|
|
3697
3776
|
"type": "structure",
|
|
3698
3777
|
"members": {
|
|
3699
3778
|
"GlobalCluster": {
|
|
3700
|
-
"shape": "
|
|
3779
|
+
"shape": "S56"
|
|
3701
3780
|
}
|
|
3702
3781
|
}
|
|
3703
3782
|
}
|
|
@@ -3781,12 +3860,12 @@
|
|
|
3781
3860
|
"type": "boolean"
|
|
3782
3861
|
},
|
|
3783
3862
|
"Parameters": {
|
|
3784
|
-
"shape": "
|
|
3863
|
+
"shape": "S70"
|
|
3785
3864
|
}
|
|
3786
3865
|
}
|
|
3787
3866
|
},
|
|
3788
3867
|
"output": {
|
|
3789
|
-
"shape": "
|
|
3868
|
+
"shape": "Sbk",
|
|
3790
3869
|
"resultWrapper": "ResetDBClusterParameterGroupResult"
|
|
3791
3870
|
}
|
|
3792
3871
|
},
|
|
@@ -3802,12 +3881,12 @@
|
|
|
3802
3881
|
"type": "boolean"
|
|
3803
3882
|
},
|
|
3804
3883
|
"Parameters": {
|
|
3805
|
-
"shape": "
|
|
3884
|
+
"shape": "S70"
|
|
3806
3885
|
}
|
|
3807
3886
|
}
|
|
3808
3887
|
},
|
|
3809
3888
|
"output": {
|
|
3810
|
-
"shape": "
|
|
3889
|
+
"shape": "Sbr",
|
|
3811
3890
|
"resultWrapper": "ResetDBParameterGroupResult"
|
|
3812
3891
|
}
|
|
3813
3892
|
},
|
|
@@ -3836,7 +3915,7 @@
|
|
|
3836
3915
|
"DBClusterIdentifier": {},
|
|
3837
3916
|
"DBClusterParameterGroupName": {},
|
|
3838
3917
|
"VpcSecurityGroupIds": {
|
|
3839
|
-
"shape": "
|
|
3918
|
+
"shape": "S2q"
|
|
3840
3919
|
},
|
|
3841
3920
|
"DBSubnetGroupName": {},
|
|
3842
3921
|
"Engine": {},
|
|
@@ -3868,7 +3947,7 @@
|
|
|
3868
3947
|
"type": "long"
|
|
3869
3948
|
},
|
|
3870
3949
|
"EnableCloudwatchLogsExports": {
|
|
3871
|
-
"shape": "
|
|
3950
|
+
"shape": "S2n"
|
|
3872
3951
|
},
|
|
3873
3952
|
"DeletionProtection": {
|
|
3874
3953
|
"type": "boolean"
|
|
@@ -3879,7 +3958,7 @@
|
|
|
3879
3958
|
"Domain": {},
|
|
3880
3959
|
"DomainIAMRoleName": {},
|
|
3881
3960
|
"ServerlessV2ScalingConfiguration": {
|
|
3882
|
-
"shape": "
|
|
3961
|
+
"shape": "S2t"
|
|
3883
3962
|
},
|
|
3884
3963
|
"NetworkType": {}
|
|
3885
3964
|
}
|
|
@@ -3889,7 +3968,7 @@
|
|
|
3889
3968
|
"type": "structure",
|
|
3890
3969
|
"members": {
|
|
3891
3970
|
"DBCluster": {
|
|
3892
|
-
"shape": "
|
|
3971
|
+
"shape": "S2w"
|
|
3893
3972
|
}
|
|
3894
3973
|
}
|
|
3895
3974
|
}
|
|
@@ -3917,7 +3996,7 @@
|
|
|
3917
3996
|
"DatabaseName": {},
|
|
3918
3997
|
"OptionGroupName": {},
|
|
3919
3998
|
"VpcSecurityGroupIds": {
|
|
3920
|
-
"shape": "
|
|
3999
|
+
"shape": "S2q"
|
|
3921
4000
|
},
|
|
3922
4001
|
"Tags": {
|
|
3923
4002
|
"shape": "Sb"
|
|
@@ -3930,11 +4009,11 @@
|
|
|
3930
4009
|
"type": "long"
|
|
3931
4010
|
},
|
|
3932
4011
|
"EnableCloudwatchLogsExports": {
|
|
3933
|
-
"shape": "
|
|
4012
|
+
"shape": "S2n"
|
|
3934
4013
|
},
|
|
3935
4014
|
"EngineMode": {},
|
|
3936
4015
|
"ScalingConfiguration": {
|
|
3937
|
-
"shape": "
|
|
4016
|
+
"shape": "S2s"
|
|
3938
4017
|
},
|
|
3939
4018
|
"DBClusterParameterGroupName": {},
|
|
3940
4019
|
"DeletionProtection": {
|
|
@@ -3954,7 +4033,7 @@
|
|
|
3954
4033
|
"type": "boolean"
|
|
3955
4034
|
},
|
|
3956
4035
|
"ServerlessV2ScalingConfiguration": {
|
|
3957
|
-
"shape": "
|
|
4036
|
+
"shape": "S2t"
|
|
3958
4037
|
},
|
|
3959
4038
|
"NetworkType": {}
|
|
3960
4039
|
}
|
|
@@ -3964,7 +4043,7 @@
|
|
|
3964
4043
|
"type": "structure",
|
|
3965
4044
|
"members": {
|
|
3966
4045
|
"DBCluster": {
|
|
3967
|
-
"shape": "
|
|
4046
|
+
"shape": "S2w"
|
|
3968
4047
|
}
|
|
3969
4048
|
}
|
|
3970
4049
|
}
|
|
@@ -3992,7 +4071,7 @@
|
|
|
3992
4071
|
"DBSubnetGroupName": {},
|
|
3993
4072
|
"OptionGroupName": {},
|
|
3994
4073
|
"VpcSecurityGroupIds": {
|
|
3995
|
-
"shape": "
|
|
4074
|
+
"shape": "S2q"
|
|
3996
4075
|
},
|
|
3997
4076
|
"Tags": {
|
|
3998
4077
|
"shape": "Sb"
|
|
@@ -4005,7 +4084,7 @@
|
|
|
4005
4084
|
"type": "long"
|
|
4006
4085
|
},
|
|
4007
4086
|
"EnableCloudwatchLogsExports": {
|
|
4008
|
-
"shape": "
|
|
4087
|
+
"shape": "S2n"
|
|
4009
4088
|
},
|
|
4010
4089
|
"DBClusterParameterGroupName": {},
|
|
4011
4090
|
"DeletionProtection": {
|
|
@@ -4017,7 +4096,7 @@
|
|
|
4017
4096
|
"Domain": {},
|
|
4018
4097
|
"DomainIAMRoleName": {},
|
|
4019
4098
|
"ScalingConfiguration": {
|
|
4020
|
-
"shape": "
|
|
4099
|
+
"shape": "S2s"
|
|
4021
4100
|
},
|
|
4022
4101
|
"EngineMode": {},
|
|
4023
4102
|
"DBClusterInstanceClass": {},
|
|
@@ -4029,7 +4108,7 @@
|
|
|
4029
4108
|
"type": "integer"
|
|
4030
4109
|
},
|
|
4031
4110
|
"ServerlessV2ScalingConfiguration": {
|
|
4032
|
-
"shape": "
|
|
4111
|
+
"shape": "S2t"
|
|
4033
4112
|
},
|
|
4034
4113
|
"NetworkType": {}
|
|
4035
4114
|
}
|
|
@@ -4039,7 +4118,7 @@
|
|
|
4039
4118
|
"type": "structure",
|
|
4040
4119
|
"members": {
|
|
4041
4120
|
"DBCluster": {
|
|
4042
|
-
"shape": "
|
|
4121
|
+
"shape": "S2w"
|
|
4043
4122
|
}
|
|
4044
4123
|
}
|
|
4045
4124
|
}
|
|
@@ -4082,7 +4161,7 @@
|
|
|
4082
4161
|
"TdeCredentialArn": {},
|
|
4083
4162
|
"TdeCredentialPassword": {},
|
|
4084
4163
|
"VpcSecurityGroupIds": {
|
|
4085
|
-
"shape": "
|
|
4164
|
+
"shape": "S2q"
|
|
4086
4165
|
},
|
|
4087
4166
|
"Domain": {},
|
|
4088
4167
|
"CopyTagsToSnapshot": {
|
|
@@ -4093,7 +4172,7 @@
|
|
|
4093
4172
|
"type": "boolean"
|
|
4094
4173
|
},
|
|
4095
4174
|
"EnableCloudwatchLogsExports": {
|
|
4096
|
-
"shape": "
|
|
4175
|
+
"shape": "S2n"
|
|
4097
4176
|
},
|
|
4098
4177
|
"ProcessorFeatures": {
|
|
4099
4178
|
"shape": "S1c"
|
|
@@ -4122,7 +4201,7 @@
|
|
|
4122
4201
|
"type": "structure",
|
|
4123
4202
|
"members": {
|
|
4124
4203
|
"DBInstance": {
|
|
4125
|
-
"shape": "
|
|
4204
|
+
"shape": "S3m"
|
|
4126
4205
|
}
|
|
4127
4206
|
}
|
|
4128
4207
|
}
|
|
@@ -4150,10 +4229,10 @@
|
|
|
4150
4229
|
"MasterUsername": {},
|
|
4151
4230
|
"MasterUserPassword": {},
|
|
4152
4231
|
"DBSecurityGroups": {
|
|
4153
|
-
"shape": "
|
|
4232
|
+
"shape": "S3k"
|
|
4154
4233
|
},
|
|
4155
4234
|
"VpcSecurityGroupIds": {
|
|
4156
|
-
"shape": "
|
|
4235
|
+
"shape": "S2q"
|
|
4157
4236
|
},
|
|
4158
4237
|
"AvailabilityZone": {},
|
|
4159
4238
|
"DBSubnetGroupName": {},
|
|
@@ -4212,7 +4291,7 @@
|
|
|
4212
4291
|
"type": "integer"
|
|
4213
4292
|
},
|
|
4214
4293
|
"EnableCloudwatchLogsExports": {
|
|
4215
|
-
"shape": "
|
|
4294
|
+
"shape": "S2n"
|
|
4216
4295
|
},
|
|
4217
4296
|
"ProcessorFeatures": {
|
|
4218
4297
|
"shape": "S1c"
|
|
@@ -4237,7 +4316,7 @@
|
|
|
4237
4316
|
"type": "structure",
|
|
4238
4317
|
"members": {
|
|
4239
4318
|
"DBInstance": {
|
|
4240
|
-
"shape": "
|
|
4319
|
+
"shape": "S3m"
|
|
4241
4320
|
}
|
|
4242
4321
|
}
|
|
4243
4322
|
}
|
|
@@ -4289,7 +4368,7 @@
|
|
|
4289
4368
|
"TdeCredentialArn": {},
|
|
4290
4369
|
"TdeCredentialPassword": {},
|
|
4291
4370
|
"VpcSecurityGroupIds": {
|
|
4292
|
-
"shape": "
|
|
4371
|
+
"shape": "S2q"
|
|
4293
4372
|
},
|
|
4294
4373
|
"Domain": {},
|
|
4295
4374
|
"DomainIAMRoleName": {},
|
|
@@ -4297,7 +4376,7 @@
|
|
|
4297
4376
|
"type": "boolean"
|
|
4298
4377
|
},
|
|
4299
4378
|
"EnableCloudwatchLogsExports": {
|
|
4300
|
-
"shape": "
|
|
4379
|
+
"shape": "S2n"
|
|
4301
4380
|
},
|
|
4302
4381
|
"ProcessorFeatures": {
|
|
4303
4382
|
"shape": "S1c"
|
|
@@ -4330,7 +4409,7 @@
|
|
|
4330
4409
|
"type": "structure",
|
|
4331
4410
|
"members": {
|
|
4332
4411
|
"DBInstance": {
|
|
4333
|
-
"shape": "
|
|
4412
|
+
"shape": "S3m"
|
|
4334
4413
|
}
|
|
4335
4414
|
}
|
|
4336
4415
|
}
|
|
@@ -4411,7 +4490,7 @@
|
|
|
4411
4490
|
"type": "structure",
|
|
4412
4491
|
"members": {
|
|
4413
4492
|
"DBCluster": {
|
|
4414
|
-
"shape": "
|
|
4493
|
+
"shape": "S2w"
|
|
4415
4494
|
}
|
|
4416
4495
|
}
|
|
4417
4496
|
}
|
|
@@ -4431,7 +4510,7 @@
|
|
|
4431
4510
|
"type": "structure",
|
|
4432
4511
|
"members": {
|
|
4433
4512
|
"DBInstance": {
|
|
4434
|
-
"shape": "
|
|
4513
|
+
"shape": "S3m"
|
|
4435
4514
|
}
|
|
4436
4515
|
}
|
|
4437
4516
|
}
|
|
@@ -4456,7 +4535,7 @@
|
|
|
4456
4535
|
"type": "structure",
|
|
4457
4536
|
"members": {
|
|
4458
4537
|
"DBInstanceAutomatedBackup": {
|
|
4459
|
-
"shape": "
|
|
4538
|
+
"shape": "S5r"
|
|
4460
4539
|
}
|
|
4461
4540
|
}
|
|
4462
4541
|
}
|
|
@@ -4526,7 +4605,7 @@
|
|
|
4526
4605
|
"type": "structure",
|
|
4527
4606
|
"members": {
|
|
4528
4607
|
"DBCluster": {
|
|
4529
|
-
"shape": "
|
|
4608
|
+
"shape": "S2w"
|
|
4530
4609
|
}
|
|
4531
4610
|
}
|
|
4532
4611
|
}
|
|
@@ -4547,7 +4626,7 @@
|
|
|
4547
4626
|
"type": "structure",
|
|
4548
4627
|
"members": {
|
|
4549
4628
|
"DBInstance": {
|
|
4550
|
-
"shape": "
|
|
4629
|
+
"shape": "S3m"
|
|
4551
4630
|
}
|
|
4552
4631
|
}
|
|
4553
4632
|
}
|
|
@@ -4567,7 +4646,30 @@
|
|
|
4567
4646
|
"type": "structure",
|
|
4568
4647
|
"members": {
|
|
4569
4648
|
"DBInstanceAutomatedBackup": {
|
|
4570
|
-
"shape": "
|
|
4649
|
+
"shape": "S5r"
|
|
4650
|
+
}
|
|
4651
|
+
}
|
|
4652
|
+
}
|
|
4653
|
+
},
|
|
4654
|
+
"SwitchoverBlueGreenDeployment": {
|
|
4655
|
+
"input": {
|
|
4656
|
+
"type": "structure",
|
|
4657
|
+
"required": [
|
|
4658
|
+
"BlueGreenDeploymentIdentifier"
|
|
4659
|
+
],
|
|
4660
|
+
"members": {
|
|
4661
|
+
"BlueGreenDeploymentIdentifier": {},
|
|
4662
|
+
"SwitchoverTimeout": {
|
|
4663
|
+
"type": "integer"
|
|
4664
|
+
}
|
|
4665
|
+
}
|
|
4666
|
+
},
|
|
4667
|
+
"output": {
|
|
4668
|
+
"resultWrapper": "SwitchoverBlueGreenDeploymentResult",
|
|
4669
|
+
"type": "structure",
|
|
4670
|
+
"members": {
|
|
4671
|
+
"BlueGreenDeployment": {
|
|
4672
|
+
"shape": "S1w"
|
|
4571
4673
|
}
|
|
4572
4674
|
}
|
|
4573
4675
|
}
|
|
@@ -4587,7 +4689,7 @@
|
|
|
4587
4689
|
"type": "structure",
|
|
4588
4690
|
"members": {
|
|
4589
4691
|
"DBInstance": {
|
|
4590
|
-
"shape": "
|
|
4692
|
+
"shape": "S3m"
|
|
4591
4693
|
}
|
|
4592
4694
|
}
|
|
4593
4695
|
}
|
|
@@ -4994,7 +5096,48 @@
|
|
|
4994
5096
|
}
|
|
4995
5097
|
}
|
|
4996
5098
|
},
|
|
4997
|
-
"
|
|
5099
|
+
"S1w": {
|
|
5100
|
+
"type": "structure",
|
|
5101
|
+
"members": {
|
|
5102
|
+
"BlueGreenDeploymentIdentifier": {},
|
|
5103
|
+
"BlueGreenDeploymentName": {},
|
|
5104
|
+
"Source": {},
|
|
5105
|
+
"Target": {},
|
|
5106
|
+
"SwitchoverDetails": {
|
|
5107
|
+
"type": "list",
|
|
5108
|
+
"member": {
|
|
5109
|
+
"type": "structure",
|
|
5110
|
+
"members": {
|
|
5111
|
+
"SourceMember": {},
|
|
5112
|
+
"TargetMember": {},
|
|
5113
|
+
"Status": {}
|
|
5114
|
+
}
|
|
5115
|
+
}
|
|
5116
|
+
},
|
|
5117
|
+
"Tasks": {
|
|
5118
|
+
"type": "list",
|
|
5119
|
+
"member": {
|
|
5120
|
+
"type": "structure",
|
|
5121
|
+
"members": {
|
|
5122
|
+
"Name": {},
|
|
5123
|
+
"Status": {}
|
|
5124
|
+
}
|
|
5125
|
+
}
|
|
5126
|
+
},
|
|
5127
|
+
"Status": {},
|
|
5128
|
+
"StatusDetails": {},
|
|
5129
|
+
"CreateTime": {
|
|
5130
|
+
"type": "timestamp"
|
|
5131
|
+
},
|
|
5132
|
+
"DeleteTime": {
|
|
5133
|
+
"type": "timestamp"
|
|
5134
|
+
},
|
|
5135
|
+
"TagList": {
|
|
5136
|
+
"shape": "Sb"
|
|
5137
|
+
}
|
|
5138
|
+
}
|
|
5139
|
+
},
|
|
5140
|
+
"S2f": {
|
|
4998
5141
|
"type": "structure",
|
|
4999
5142
|
"members": {
|
|
5000
5143
|
"Engine": {},
|
|
@@ -5003,13 +5146,13 @@
|
|
|
5003
5146
|
"DBEngineDescription": {},
|
|
5004
5147
|
"DBEngineVersionDescription": {},
|
|
5005
5148
|
"DefaultCharacterSet": {
|
|
5006
|
-
"shape": "
|
|
5149
|
+
"shape": "S2g"
|
|
5007
5150
|
},
|
|
5008
5151
|
"SupportedCharacterSets": {
|
|
5009
|
-
"shape": "
|
|
5152
|
+
"shape": "S2h"
|
|
5010
5153
|
},
|
|
5011
5154
|
"SupportedNcharCharacterSets": {
|
|
5012
|
-
"shape": "
|
|
5155
|
+
"shape": "S2h"
|
|
5013
5156
|
},
|
|
5014
5157
|
"ValidUpgradeTarget": {
|
|
5015
5158
|
"type": "list",
|
|
@@ -5027,7 +5170,7 @@
|
|
|
5027
5170
|
"type": "boolean"
|
|
5028
5171
|
},
|
|
5029
5172
|
"SupportedEngineModes": {
|
|
5030
|
-
"shape": "
|
|
5173
|
+
"shape": "S2k"
|
|
5031
5174
|
},
|
|
5032
5175
|
"SupportsParallelQuery": {
|
|
5033
5176
|
"type": "boolean"
|
|
@@ -5052,7 +5195,7 @@
|
|
|
5052
5195
|
}
|
|
5053
5196
|
},
|
|
5054
5197
|
"ExportableLogTypes": {
|
|
5055
|
-
"shape": "
|
|
5198
|
+
"shape": "S2n"
|
|
5056
5199
|
},
|
|
5057
5200
|
"SupportsLogExportsToCloudwatchLogs": {
|
|
5058
5201
|
"type": "boolean"
|
|
@@ -5061,7 +5204,7 @@
|
|
|
5061
5204
|
"type": "boolean"
|
|
5062
5205
|
},
|
|
5063
5206
|
"SupportedEngineModes": {
|
|
5064
|
-
"shape": "
|
|
5207
|
+
"shape": "S2k"
|
|
5065
5208
|
},
|
|
5066
5209
|
"SupportedFeatureNames": {
|
|
5067
5210
|
"type": "list",
|
|
@@ -5091,35 +5234,35 @@
|
|
|
5091
5234
|
"CustomDBEngineVersionManifest": {}
|
|
5092
5235
|
}
|
|
5093
5236
|
},
|
|
5094
|
-
"
|
|
5237
|
+
"S2g": {
|
|
5095
5238
|
"type": "structure",
|
|
5096
5239
|
"members": {
|
|
5097
5240
|
"CharacterSetName": {},
|
|
5098
5241
|
"CharacterSetDescription": {}
|
|
5099
5242
|
}
|
|
5100
5243
|
},
|
|
5101
|
-
"
|
|
5244
|
+
"S2h": {
|
|
5102
5245
|
"type": "list",
|
|
5103
5246
|
"member": {
|
|
5104
|
-
"shape": "
|
|
5247
|
+
"shape": "S2g",
|
|
5105
5248
|
"locationName": "CharacterSet"
|
|
5106
5249
|
}
|
|
5107
5250
|
},
|
|
5108
|
-
"
|
|
5251
|
+
"S2k": {
|
|
5109
5252
|
"type": "list",
|
|
5110
5253
|
"member": {}
|
|
5111
5254
|
},
|
|
5112
|
-
"
|
|
5255
|
+
"S2n": {
|
|
5113
5256
|
"type": "list",
|
|
5114
5257
|
"member": {}
|
|
5115
5258
|
},
|
|
5116
|
-
"
|
|
5259
|
+
"S2q": {
|
|
5117
5260
|
"type": "list",
|
|
5118
5261
|
"member": {
|
|
5119
5262
|
"locationName": "VpcSecurityGroupId"
|
|
5120
5263
|
}
|
|
5121
5264
|
},
|
|
5122
|
-
"
|
|
5265
|
+
"S2s": {
|
|
5123
5266
|
"type": "structure",
|
|
5124
5267
|
"members": {
|
|
5125
5268
|
"MinCapacity": {
|
|
@@ -5140,7 +5283,7 @@
|
|
|
5140
5283
|
}
|
|
5141
5284
|
}
|
|
5142
5285
|
},
|
|
5143
|
-
"
|
|
5286
|
+
"S2t": {
|
|
5144
5287
|
"type": "structure",
|
|
5145
5288
|
"members": {
|
|
5146
5289
|
"MinCapacity": {
|
|
@@ -5151,7 +5294,7 @@
|
|
|
5151
5294
|
}
|
|
5152
5295
|
}
|
|
5153
5296
|
},
|
|
5154
|
-
"
|
|
5297
|
+
"S2w": {
|
|
5155
5298
|
"type": "structure",
|
|
5156
5299
|
"members": {
|
|
5157
5300
|
"AllocatedStorage": {
|
|
@@ -5270,7 +5413,7 @@
|
|
|
5270
5413
|
"type": "long"
|
|
5271
5414
|
},
|
|
5272
5415
|
"EnabledCloudwatchLogsExports": {
|
|
5273
|
-
"shape": "
|
|
5416
|
+
"shape": "S2n"
|
|
5274
5417
|
},
|
|
5275
5418
|
"Capacity": {
|
|
5276
5419
|
"type": "integer"
|
|
@@ -5314,7 +5457,7 @@
|
|
|
5314
5457
|
"type": "boolean"
|
|
5315
5458
|
},
|
|
5316
5459
|
"DomainMemberships": {
|
|
5317
|
-
"shape": "
|
|
5460
|
+
"shape": "S37"
|
|
5318
5461
|
},
|
|
5319
5462
|
"TagList": {
|
|
5320
5463
|
"shape": "Sb"
|
|
@@ -5327,7 +5470,7 @@
|
|
|
5327
5470
|
"type": "structure",
|
|
5328
5471
|
"members": {
|
|
5329
5472
|
"PendingCloudwatchLogsExports": {
|
|
5330
|
-
"shape": "
|
|
5473
|
+
"shape": "S3b"
|
|
5331
5474
|
},
|
|
5332
5475
|
"DBClusterIdentifier": {},
|
|
5333
5476
|
"MasterUserPassword": {},
|
|
@@ -5384,7 +5527,7 @@
|
|
|
5384
5527
|
},
|
|
5385
5528
|
"wrapper": true
|
|
5386
5529
|
},
|
|
5387
|
-
"
|
|
5530
|
+
"S37": {
|
|
5388
5531
|
"type": "list",
|
|
5389
5532
|
"member": {
|
|
5390
5533
|
"locationName": "DomainMembership",
|
|
@@ -5397,18 +5540,18 @@
|
|
|
5397
5540
|
}
|
|
5398
5541
|
}
|
|
5399
5542
|
},
|
|
5400
|
-
"
|
|
5543
|
+
"S3b": {
|
|
5401
5544
|
"type": "structure",
|
|
5402
5545
|
"members": {
|
|
5403
5546
|
"LogTypesToEnable": {
|
|
5404
|
-
"shape": "
|
|
5547
|
+
"shape": "S2n"
|
|
5405
5548
|
},
|
|
5406
5549
|
"LogTypesToDisable": {
|
|
5407
|
-
"shape": "
|
|
5550
|
+
"shape": "S2n"
|
|
5408
5551
|
}
|
|
5409
5552
|
}
|
|
5410
5553
|
},
|
|
5411
|
-
"
|
|
5554
|
+
"S3e": {
|
|
5412
5555
|
"type": "structure",
|
|
5413
5556
|
"members": {
|
|
5414
5557
|
"DBClusterEndpointIdentifier": {},
|
|
@@ -5427,13 +5570,13 @@
|
|
|
5427
5570
|
"DBClusterEndpointArn": {}
|
|
5428
5571
|
}
|
|
5429
5572
|
},
|
|
5430
|
-
"
|
|
5573
|
+
"S3k": {
|
|
5431
5574
|
"type": "list",
|
|
5432
5575
|
"member": {
|
|
5433
5576
|
"locationName": "DBSecurityGroupName"
|
|
5434
5577
|
}
|
|
5435
5578
|
},
|
|
5436
|
-
"
|
|
5579
|
+
"S3m": {
|
|
5437
5580
|
"type": "structure",
|
|
5438
5581
|
"members": {
|
|
5439
5582
|
"DBInstanceIdentifier": {},
|
|
@@ -5446,7 +5589,7 @@
|
|
|
5446
5589
|
"MasterUsername": {},
|
|
5447
5590
|
"DBName": {},
|
|
5448
5591
|
"Endpoint": {
|
|
5449
|
-
"shape": "
|
|
5592
|
+
"shape": "S3n"
|
|
5450
5593
|
},
|
|
5451
5594
|
"AllocatedStorage": {
|
|
5452
5595
|
"type": "integer"
|
|
@@ -5477,7 +5620,7 @@
|
|
|
5477
5620
|
},
|
|
5478
5621
|
"AvailabilityZone": {},
|
|
5479
5622
|
"DBSubnetGroup": {
|
|
5480
|
-
"shape": "
|
|
5623
|
+
"shape": "S3q"
|
|
5481
5624
|
},
|
|
5482
5625
|
"PreferredMaintenanceWindow": {},
|
|
5483
5626
|
"PendingModifiedValues": {
|
|
@@ -5507,7 +5650,7 @@
|
|
|
5507
5650
|
"CACertificateIdentifier": {},
|
|
5508
5651
|
"DBSubnetGroupName": {},
|
|
5509
5652
|
"PendingCloudwatchLogsExports": {
|
|
5510
|
-
"shape": "
|
|
5653
|
+
"shape": "S3b"
|
|
5511
5654
|
},
|
|
5512
5655
|
"ProcessorFeatures": {
|
|
5513
5656
|
"shape": "S1c"
|
|
@@ -5597,7 +5740,7 @@
|
|
|
5597
5740
|
"DbiResourceId": {},
|
|
5598
5741
|
"CACertificateIdentifier": {},
|
|
5599
5742
|
"DomainMemberships": {
|
|
5600
|
-
"shape": "
|
|
5743
|
+
"shape": "S37"
|
|
5601
5744
|
},
|
|
5602
5745
|
"CopyTagsToSnapshot": {
|
|
5603
5746
|
"type": "boolean"
|
|
@@ -5623,7 +5766,7 @@
|
|
|
5623
5766
|
"type": "integer"
|
|
5624
5767
|
},
|
|
5625
5768
|
"EnabledCloudwatchLogsExports": {
|
|
5626
|
-
"shape": "
|
|
5769
|
+
"shape": "S2n"
|
|
5627
5770
|
},
|
|
5628
5771
|
"ProcessorFeatures": {
|
|
5629
5772
|
"shape": "S1c"
|
|
@@ -5644,7 +5787,7 @@
|
|
|
5644
5787
|
}
|
|
5645
5788
|
},
|
|
5646
5789
|
"ListenerEndpoint": {
|
|
5647
|
-
"shape": "
|
|
5790
|
+
"shape": "S3n"
|
|
5648
5791
|
},
|
|
5649
5792
|
"MaxAllocatedStorage": {
|
|
5650
5793
|
"type": "integer"
|
|
@@ -5653,7 +5796,7 @@
|
|
|
5653
5796
|
"shape": "Sb"
|
|
5654
5797
|
},
|
|
5655
5798
|
"DBInstanceAutomatedBackupsReplications": {
|
|
5656
|
-
"shape": "
|
|
5799
|
+
"shape": "S46"
|
|
5657
5800
|
},
|
|
5658
5801
|
"CustomerOwnedIpEnabled": {
|
|
5659
5802
|
"type": "boolean"
|
|
@@ -5681,7 +5824,7 @@
|
|
|
5681
5824
|
},
|
|
5682
5825
|
"wrapper": true
|
|
5683
5826
|
},
|
|
5684
|
-
"
|
|
5827
|
+
"S3n": {
|
|
5685
5828
|
"type": "structure",
|
|
5686
5829
|
"members": {
|
|
5687
5830
|
"Address": {},
|
|
@@ -5691,7 +5834,7 @@
|
|
|
5691
5834
|
"HostedZoneId": {}
|
|
5692
5835
|
}
|
|
5693
5836
|
},
|
|
5694
|
-
"
|
|
5837
|
+
"S3q": {
|
|
5695
5838
|
"type": "structure",
|
|
5696
5839
|
"members": {
|
|
5697
5840
|
"DBSubnetGroupName": {},
|
|
@@ -5706,7 +5849,7 @@
|
|
|
5706
5849
|
"members": {
|
|
5707
5850
|
"SubnetIdentifier": {},
|
|
5708
5851
|
"SubnetAvailabilityZone": {
|
|
5709
|
-
"shape": "
|
|
5852
|
+
"shape": "S3t"
|
|
5710
5853
|
},
|
|
5711
5854
|
"SubnetOutpost": {
|
|
5712
5855
|
"type": "structure",
|
|
@@ -5725,14 +5868,14 @@
|
|
|
5725
5868
|
},
|
|
5726
5869
|
"wrapper": true
|
|
5727
5870
|
},
|
|
5728
|
-
"
|
|
5871
|
+
"S3t": {
|
|
5729
5872
|
"type": "structure",
|
|
5730
5873
|
"members": {
|
|
5731
5874
|
"Name": {}
|
|
5732
5875
|
},
|
|
5733
5876
|
"wrapper": true
|
|
5734
5877
|
},
|
|
5735
|
-
"
|
|
5878
|
+
"S46": {
|
|
5736
5879
|
"type": "list",
|
|
5737
5880
|
"member": {
|
|
5738
5881
|
"locationName": "DBInstanceAutomatedBackupsReplication",
|
|
@@ -5742,7 +5885,7 @@
|
|
|
5742
5885
|
}
|
|
5743
5886
|
}
|
|
5744
5887
|
},
|
|
5745
|
-
"
|
|
5888
|
+
"S4f": {
|
|
5746
5889
|
"type": "list",
|
|
5747
5890
|
"member": {
|
|
5748
5891
|
"type": "structure",
|
|
@@ -5755,7 +5898,7 @@
|
|
|
5755
5898
|
}
|
|
5756
5899
|
}
|
|
5757
5900
|
},
|
|
5758
|
-
"
|
|
5901
|
+
"S4k": {
|
|
5759
5902
|
"type": "structure",
|
|
5760
5903
|
"members": {
|
|
5761
5904
|
"DBProxyName": {},
|
|
@@ -5801,7 +5944,7 @@
|
|
|
5801
5944
|
}
|
|
5802
5945
|
}
|
|
5803
5946
|
},
|
|
5804
|
-
"
|
|
5947
|
+
"S4t": {
|
|
5805
5948
|
"type": "structure",
|
|
5806
5949
|
"members": {
|
|
5807
5950
|
"DBProxyEndpointName": {},
|
|
@@ -5825,13 +5968,13 @@
|
|
|
5825
5968
|
}
|
|
5826
5969
|
}
|
|
5827
5970
|
},
|
|
5828
|
-
"
|
|
5971
|
+
"S50": {
|
|
5829
5972
|
"type": "list",
|
|
5830
5973
|
"member": {
|
|
5831
5974
|
"locationName": "SubnetIdentifier"
|
|
5832
5975
|
}
|
|
5833
5976
|
},
|
|
5834
|
-
"
|
|
5977
|
+
"S56": {
|
|
5835
5978
|
"type": "structure",
|
|
5836
5979
|
"members": {
|
|
5837
5980
|
"GlobalClusterIdentifier": {},
|
|
@@ -5878,7 +6021,7 @@
|
|
|
5878
6021
|
},
|
|
5879
6022
|
"wrapper": true
|
|
5880
6023
|
},
|
|
5881
|
-
"
|
|
6024
|
+
"S5r": {
|
|
5882
6025
|
"type": "structure",
|
|
5883
6026
|
"members": {
|
|
5884
6027
|
"DBInstanceArn": {},
|
|
@@ -5931,7 +6074,7 @@
|
|
|
5931
6074
|
},
|
|
5932
6075
|
"DBInstanceAutomatedBackupsArn": {},
|
|
5933
6076
|
"DBInstanceAutomatedBackupsReplications": {
|
|
5934
|
-
"shape": "
|
|
6077
|
+
"shape": "S46"
|
|
5935
6078
|
},
|
|
5936
6079
|
"BackupTarget": {},
|
|
5937
6080
|
"StorageThroughput": {
|
|
@@ -5940,7 +6083,7 @@
|
|
|
5940
6083
|
},
|
|
5941
6084
|
"wrapper": true
|
|
5942
6085
|
},
|
|
5943
|
-
"
|
|
6086
|
+
"S6f": {
|
|
5944
6087
|
"type": "list",
|
|
5945
6088
|
"member": {
|
|
5946
6089
|
"locationName": "Filter",
|
|
@@ -5960,7 +6103,7 @@
|
|
|
5960
6103
|
}
|
|
5961
6104
|
}
|
|
5962
6105
|
},
|
|
5963
|
-
"
|
|
6106
|
+
"S6o": {
|
|
5964
6107
|
"type": "structure",
|
|
5965
6108
|
"members": {
|
|
5966
6109
|
"CertificateIdentifier": {},
|
|
@@ -5982,7 +6125,7 @@
|
|
|
5982
6125
|
},
|
|
5983
6126
|
"wrapper": true
|
|
5984
6127
|
},
|
|
5985
|
-
"
|
|
6128
|
+
"S70": {
|
|
5986
6129
|
"type": "list",
|
|
5987
6130
|
"member": {
|
|
5988
6131
|
"locationName": "Parameter",
|
|
@@ -6001,12 +6144,12 @@
|
|
|
6001
6144
|
"MinimumEngineVersion": {},
|
|
6002
6145
|
"ApplyMethod": {},
|
|
6003
6146
|
"SupportedEngineModes": {
|
|
6004
|
-
"shape": "
|
|
6147
|
+
"shape": "S2k"
|
|
6005
6148
|
}
|
|
6006
6149
|
}
|
|
6007
6150
|
}
|
|
6008
6151
|
},
|
|
6009
|
-
"
|
|
6152
|
+
"S75": {
|
|
6010
6153
|
"type": "structure",
|
|
6011
6154
|
"members": {
|
|
6012
6155
|
"DBClusterSnapshotIdentifier": {},
|
|
@@ -6018,7 +6161,7 @@
|
|
|
6018
6161
|
"members": {
|
|
6019
6162
|
"AttributeName": {},
|
|
6020
6163
|
"AttributeValues": {
|
|
6021
|
-
"shape": "
|
|
6164
|
+
"shape": "S78"
|
|
6022
6165
|
}
|
|
6023
6166
|
}
|
|
6024
6167
|
}
|
|
@@ -6026,13 +6169,13 @@
|
|
|
6026
6169
|
},
|
|
6027
6170
|
"wrapper": true
|
|
6028
6171
|
},
|
|
6029
|
-
"
|
|
6172
|
+
"S78": {
|
|
6030
6173
|
"type": "list",
|
|
6031
6174
|
"member": {
|
|
6032
6175
|
"locationName": "AttributeValue"
|
|
6033
6176
|
}
|
|
6034
6177
|
},
|
|
6035
|
-
"
|
|
6178
|
+
"S86": {
|
|
6036
6179
|
"type": "structure",
|
|
6037
6180
|
"members": {
|
|
6038
6181
|
"DBProxyName": {},
|
|
@@ -6068,7 +6211,7 @@
|
|
|
6068
6211
|
}
|
|
6069
6212
|
}
|
|
6070
6213
|
},
|
|
6071
|
-
"
|
|
6214
|
+
"S8a": {
|
|
6072
6215
|
"type": "list",
|
|
6073
6216
|
"member": {
|
|
6074
6217
|
"type": "structure",
|
|
@@ -6093,7 +6236,7 @@
|
|
|
6093
6236
|
}
|
|
6094
6237
|
}
|
|
6095
6238
|
},
|
|
6096
|
-
"
|
|
6239
|
+
"S8m": {
|
|
6097
6240
|
"type": "structure",
|
|
6098
6241
|
"members": {
|
|
6099
6242
|
"DBSnapshotIdentifier": {},
|
|
@@ -6105,7 +6248,7 @@
|
|
|
6105
6248
|
"members": {
|
|
6106
6249
|
"AttributeName": {},
|
|
6107
6250
|
"AttributeValues": {
|
|
6108
|
-
"shape": "
|
|
6251
|
+
"shape": "S78"
|
|
6109
6252
|
}
|
|
6110
6253
|
},
|
|
6111
6254
|
"wrapper": true
|
|
@@ -6114,18 +6257,18 @@
|
|
|
6114
6257
|
},
|
|
6115
6258
|
"wrapper": true
|
|
6116
6259
|
},
|
|
6117
|
-
"
|
|
6260
|
+
"S8x": {
|
|
6118
6261
|
"type": "structure",
|
|
6119
6262
|
"members": {
|
|
6120
6263
|
"DBParameterGroupFamily": {},
|
|
6121
6264
|
"Marker": {},
|
|
6122
6265
|
"Parameters": {
|
|
6123
|
-
"shape": "
|
|
6266
|
+
"shape": "S70"
|
|
6124
6267
|
}
|
|
6125
6268
|
},
|
|
6126
6269
|
"wrapper": true
|
|
6127
6270
|
},
|
|
6128
|
-
"
|
|
6271
|
+
"Sa2": {
|
|
6129
6272
|
"type": "list",
|
|
6130
6273
|
"member": {
|
|
6131
6274
|
"locationName": "AvailableProcessorFeature",
|
|
@@ -6137,7 +6280,7 @@
|
|
|
6137
6280
|
}
|
|
6138
6281
|
}
|
|
6139
6282
|
},
|
|
6140
|
-
"
|
|
6283
|
+
"Sab": {
|
|
6141
6284
|
"type": "structure",
|
|
6142
6285
|
"members": {
|
|
6143
6286
|
"ReservedDBInstanceId": {},
|
|
@@ -6166,14 +6309,14 @@
|
|
|
6166
6309
|
},
|
|
6167
6310
|
"State": {},
|
|
6168
6311
|
"RecurringCharges": {
|
|
6169
|
-
"shape": "
|
|
6312
|
+
"shape": "Sad"
|
|
6170
6313
|
},
|
|
6171
6314
|
"ReservedDBInstanceArn": {},
|
|
6172
6315
|
"LeaseId": {}
|
|
6173
6316
|
},
|
|
6174
6317
|
"wrapper": true
|
|
6175
6318
|
},
|
|
6176
|
-
"
|
|
6319
|
+
"Sad": {
|
|
6177
6320
|
"type": "list",
|
|
6178
6321
|
"member": {
|
|
6179
6322
|
"locationName": "RecurringCharge",
|
|
@@ -6187,7 +6330,7 @@
|
|
|
6187
6330
|
"wrapper": true
|
|
6188
6331
|
}
|
|
6189
6332
|
},
|
|
6190
|
-
"
|
|
6333
|
+
"Sas": {
|
|
6191
6334
|
"type": "list",
|
|
6192
6335
|
"member": {
|
|
6193
6336
|
"locationName": "Range",
|
|
@@ -6205,7 +6348,7 @@
|
|
|
6205
6348
|
}
|
|
6206
6349
|
}
|
|
6207
6350
|
},
|
|
6208
|
-
"
|
|
6351
|
+
"Sau": {
|
|
6209
6352
|
"type": "list",
|
|
6210
6353
|
"member": {
|
|
6211
6354
|
"locationName": "DoubleRange",
|
|
@@ -6220,24 +6363,24 @@
|
|
|
6220
6363
|
}
|
|
6221
6364
|
}
|
|
6222
6365
|
},
|
|
6223
|
-
"
|
|
6366
|
+
"Sbg": {
|
|
6224
6367
|
"type": "structure",
|
|
6225
6368
|
"members": {
|
|
6226
6369
|
"EnableLogTypes": {
|
|
6227
|
-
"shape": "
|
|
6370
|
+
"shape": "S2n"
|
|
6228
6371
|
},
|
|
6229
6372
|
"DisableLogTypes": {
|
|
6230
|
-
"shape": "
|
|
6373
|
+
"shape": "S2n"
|
|
6231
6374
|
}
|
|
6232
6375
|
}
|
|
6233
6376
|
},
|
|
6234
|
-
"
|
|
6377
|
+
"Sbk": {
|
|
6235
6378
|
"type": "structure",
|
|
6236
6379
|
"members": {
|
|
6237
6380
|
"DBClusterParameterGroupName": {}
|
|
6238
6381
|
}
|
|
6239
6382
|
},
|
|
6240
|
-
"
|
|
6383
|
+
"Sbr": {
|
|
6241
6384
|
"type": "structure",
|
|
6242
6385
|
"members": {
|
|
6243
6386
|
"DBParameterGroupName": {}
|