neptune-2014-10-31.min.json 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2014-10-31",
  5. "endpointPrefix": "rds",
  6. "protocol": "query",
  7. "serviceAbbreviation": "Amazon Neptune",
  8. "serviceFullName": "Amazon Neptune",
  9. "serviceId": "Neptune",
  10. "signatureVersion": "v4",
  11. "signingName": "rds",
  12. "uid": "neptune-2014-10-31",
  13. "xmlNamespace": "http://rds.amazonaws.com/doc/2014-10-31/"
  14. },
  15. "operations": {
  16. "AddRoleToDBCluster": {
  17. "input": {
  18. "type": "structure",
  19. "required": [
  20. "DBClusterIdentifier",
  21. "RoleArn"
  22. ],
  23. "members": {
  24. "DBClusterIdentifier": {},
  25. "RoleArn": {},
  26. "FeatureName": {}
  27. }
  28. }
  29. },
  30. "AddSourceIdentifierToSubscription": {
  31. "input": {
  32. "type": "structure",
  33. "required": [
  34. "SubscriptionName",
  35. "SourceIdentifier"
  36. ],
  37. "members": {
  38. "SubscriptionName": {},
  39. "SourceIdentifier": {}
  40. }
  41. },
  42. "output": {
  43. "resultWrapper": "AddSourceIdentifierToSubscriptionResult",
  44. "type": "structure",
  45. "members": {
  46. "EventSubscription": {
  47. "shape": "S5"
  48. }
  49. }
  50. }
  51. },
  52. "AddTagsToResource": {
  53. "input": {
  54. "type": "structure",
  55. "required": [
  56. "ResourceName",
  57. "Tags"
  58. ],
  59. "members": {
  60. "ResourceName": {},
  61. "Tags": {
  62. "shape": "Sa"
  63. }
  64. }
  65. }
  66. },
  67. "ApplyPendingMaintenanceAction": {
  68. "input": {
  69. "type": "structure",
  70. "required": [
  71. "ResourceIdentifier",
  72. "ApplyAction",
  73. "OptInType"
  74. ],
  75. "members": {
  76. "ResourceIdentifier": {},
  77. "ApplyAction": {},
  78. "OptInType": {}
  79. }
  80. },
  81. "output": {
  82. "resultWrapper": "ApplyPendingMaintenanceActionResult",
  83. "type": "structure",
  84. "members": {
  85. "ResourcePendingMaintenanceActions": {
  86. "shape": "Se"
  87. }
  88. }
  89. }
  90. },
  91. "CopyDBClusterParameterGroup": {
  92. "input": {
  93. "type": "structure",
  94. "required": [
  95. "SourceDBClusterParameterGroupIdentifier",
  96. "TargetDBClusterParameterGroupIdentifier",
  97. "TargetDBClusterParameterGroupDescription"
  98. ],
  99. "members": {
  100. "SourceDBClusterParameterGroupIdentifier": {},
  101. "TargetDBClusterParameterGroupIdentifier": {},
  102. "TargetDBClusterParameterGroupDescription": {},
  103. "Tags": {
  104. "shape": "Sa"
  105. }
  106. }
  107. },
  108. "output": {
  109. "resultWrapper": "CopyDBClusterParameterGroupResult",
  110. "type": "structure",
  111. "members": {
  112. "DBClusterParameterGroup": {
  113. "shape": "Sk"
  114. }
  115. }
  116. }
  117. },
  118. "CopyDBClusterSnapshot": {
  119. "input": {
  120. "type": "structure",
  121. "required": [
  122. "SourceDBClusterSnapshotIdentifier",
  123. "TargetDBClusterSnapshotIdentifier"
  124. ],
  125. "members": {
  126. "SourceDBClusterSnapshotIdentifier": {},
  127. "TargetDBClusterSnapshotIdentifier": {},
  128. "KmsKeyId": {},
  129. "PreSignedUrl": {},
  130. "CopyTags": {
  131. "type": "boolean"
  132. },
  133. "Tags": {
  134. "shape": "Sa"
  135. }
  136. }
  137. },
  138. "output": {
  139. "resultWrapper": "CopyDBClusterSnapshotResult",
  140. "type": "structure",
  141. "members": {
  142. "DBClusterSnapshot": {
  143. "shape": "So"
  144. }
  145. }
  146. }
  147. },
  148. "CopyDBParameterGroup": {
  149. "input": {
  150. "type": "structure",
  151. "required": [
  152. "SourceDBParameterGroupIdentifier",
  153. "TargetDBParameterGroupIdentifier",
  154. "TargetDBParameterGroupDescription"
  155. ],
  156. "members": {
  157. "SourceDBParameterGroupIdentifier": {},
  158. "TargetDBParameterGroupIdentifier": {},
  159. "TargetDBParameterGroupDescription": {},
  160. "Tags": {
  161. "shape": "Sa"
  162. }
  163. }
  164. },
  165. "output": {
  166. "resultWrapper": "CopyDBParameterGroupResult",
  167. "type": "structure",
  168. "members": {
  169. "DBParameterGroup": {
  170. "shape": "St"
  171. }
  172. }
  173. }
  174. },
  175. "CreateDBCluster": {
  176. "input": {
  177. "type": "structure",
  178. "required": [
  179. "DBClusterIdentifier",
  180. "Engine"
  181. ],
  182. "members": {
  183. "AvailabilityZones": {
  184. "shape": "Sp"
  185. },
  186. "BackupRetentionPeriod": {
  187. "type": "integer"
  188. },
  189. "CharacterSetName": {},
  190. "CopyTagsToSnapshot": {
  191. "type": "boolean"
  192. },
  193. "DatabaseName": {},
  194. "DBClusterIdentifier": {},
  195. "DBClusterParameterGroupName": {},
  196. "VpcSecurityGroupIds": {
  197. "shape": "Sw"
  198. },
  199. "DBSubnetGroupName": {},
  200. "Engine": {},
  201. "EngineVersion": {},
  202. "Port": {
  203. "type": "integer"
  204. },
  205. "MasterUsername": {},
  206. "MasterUserPassword": {},
  207. "OptionGroupName": {},
  208. "PreferredBackupWindow": {},
  209. "PreferredMaintenanceWindow": {},
  210. "ReplicationSourceIdentifier": {},
  211. "Tags": {
  212. "shape": "Sa"
  213. },
  214. "StorageEncrypted": {
  215. "type": "boolean"
  216. },
  217. "KmsKeyId": {},
  218. "PreSignedUrl": {},
  219. "EnableIAMDatabaseAuthentication": {
  220. "type": "boolean"
  221. },
  222. "EnableCloudwatchLogsExports": {
  223. "shape": "Sx"
  224. },
  225. "DeletionProtection": {
  226. "type": "boolean"
  227. },
  228. "ServerlessV2ScalingConfiguration": {
  229. "shape": "Sy"
  230. },
  231. "GlobalClusterIdentifier": {},
  232. "StorageType": {}
  233. }
  234. },
  235. "output": {
  236. "resultWrapper": "CreateDBClusterResult",
  237. "type": "structure",
  238. "members": {
  239. "DBCluster": {
  240. "shape": "S12"
  241. }
  242. }
  243. }
  244. },
  245. "CreateDBClusterEndpoint": {
  246. "input": {
  247. "type": "structure",
  248. "required": [
  249. "DBClusterIdentifier",
  250. "DBClusterEndpointIdentifier",
  251. "EndpointType"
  252. ],
  253. "members": {
  254. "DBClusterIdentifier": {},
  255. "DBClusterEndpointIdentifier": {},
  256. "EndpointType": {},
  257. "StaticMembers": {
  258. "shape": "S1g"
  259. },
  260. "ExcludedMembers": {
  261. "shape": "S1g"
  262. },
  263. "Tags": {
  264. "shape": "Sa"
  265. }
  266. }
  267. },
  268. "output": {
  269. "resultWrapper": "CreateDBClusterEndpointResult",
  270. "type": "structure",
  271. "members": {
  272. "DBClusterEndpointIdentifier": {},
  273. "DBClusterIdentifier": {},
  274. "DBClusterEndpointResourceIdentifier": {},
  275. "Endpoint": {},
  276. "Status": {},
  277. "EndpointType": {},
  278. "CustomEndpointType": {},
  279. "StaticMembers": {
  280. "shape": "S1g"
  281. },
  282. "ExcludedMembers": {
  283. "shape": "S1g"
  284. },
  285. "DBClusterEndpointArn": {}
  286. }
  287. }
  288. },
  289. "CreateDBClusterParameterGroup": {
  290. "input": {
  291. "type": "structure",
  292. "required": [
  293. "DBClusterParameterGroupName",
  294. "DBParameterGroupFamily",
  295. "Description"
  296. ],
  297. "members": {
  298. "DBClusterParameterGroupName": {},
  299. "DBParameterGroupFamily": {},
  300. "Description": {},
  301. "Tags": {
  302. "shape": "Sa"
  303. }
  304. }
  305. },
  306. "output": {
  307. "resultWrapper": "CreateDBClusterParameterGroupResult",
  308. "type": "structure",
  309. "members": {
  310. "DBClusterParameterGroup": {
  311. "shape": "Sk"
  312. }
  313. }
  314. }
  315. },
  316. "CreateDBClusterSnapshot": {
  317. "input": {
  318. "type": "structure",
  319. "required": [
  320. "DBClusterSnapshotIdentifier",
  321. "DBClusterIdentifier"
  322. ],
  323. "members": {
  324. "DBClusterSnapshotIdentifier": {},
  325. "DBClusterIdentifier": {},
  326. "Tags": {
  327. "shape": "Sa"
  328. }
  329. }
  330. },
  331. "output": {
  332. "resultWrapper": "CreateDBClusterSnapshotResult",
  333. "type": "structure",
  334. "members": {
  335. "DBClusterSnapshot": {
  336. "shape": "So"
  337. }
  338. }
  339. }
  340. },
  341. "CreateDBInstance": {
  342. "input": {
  343. "type": "structure",
  344. "required": [
  345. "DBInstanceIdentifier",
  346. "DBInstanceClass",
  347. "Engine",
  348. "DBClusterIdentifier"
  349. ],
  350. "members": {
  351. "DBName": {},
  352. "DBInstanceIdentifier": {},
  353. "AllocatedStorage": {
  354. "type": "integer"
  355. },
  356. "DBInstanceClass": {},
  357. "Engine": {},
  358. "MasterUsername": {},
  359. "MasterUserPassword": {},
  360. "DBSecurityGroups": {
  361. "shape": "S1n"
  362. },
  363. "VpcSecurityGroupIds": {
  364. "shape": "Sw"
  365. },
  366. "AvailabilityZone": {},
  367. "DBSubnetGroupName": {},
  368. "PreferredMaintenanceWindow": {},
  369. "DBParameterGroupName": {},
  370. "BackupRetentionPeriod": {
  371. "type": "integer"
  372. },
  373. "PreferredBackupWindow": {},
  374. "Port": {
  375. "type": "integer"
  376. },
  377. "MultiAZ": {
  378. "type": "boolean"
  379. },
  380. "EngineVersion": {},
  381. "AutoMinorVersionUpgrade": {
  382. "type": "boolean"
  383. },
  384. "LicenseModel": {},
  385. "Iops": {
  386. "type": "integer"
  387. },
  388. "OptionGroupName": {},
  389. "CharacterSetName": {},
  390. "PubliclyAccessible": {
  391. "deprecated": true,
  392. "type": "boolean"
  393. },
  394. "Tags": {
  395. "shape": "Sa"
  396. },
  397. "DBClusterIdentifier": {},
  398. "StorageType": {},
  399. "TdeCredentialArn": {},
  400. "TdeCredentialPassword": {
  401. "shape": "S1o"
  402. },
  403. "StorageEncrypted": {
  404. "type": "boolean"
  405. },
  406. "KmsKeyId": {},
  407. "Domain": {},
  408. "CopyTagsToSnapshot": {
  409. "type": "boolean"
  410. },
  411. "MonitoringInterval": {
  412. "type": "integer"
  413. },
  414. "MonitoringRoleArn": {},
  415. "DomainIAMRoleName": {},
  416. "PromotionTier": {
  417. "type": "integer"
  418. },
  419. "Timezone": {},
  420. "EnableIAMDatabaseAuthentication": {
  421. "type": "boolean"
  422. },
  423. "EnablePerformanceInsights": {
  424. "type": "boolean"
  425. },
  426. "PerformanceInsightsKMSKeyId": {},
  427. "EnableCloudwatchLogsExports": {
  428. "shape": "Sx"
  429. },
  430. "DeletionProtection": {
  431. "type": "boolean"
  432. }
  433. }
  434. },
  435. "output": {
  436. "resultWrapper": "CreateDBInstanceResult",
  437. "type": "structure",
  438. "members": {
  439. "DBInstance": {
  440. "shape": "S1q"
  441. }
  442. }
  443. }
  444. },
  445. "CreateDBParameterGroup": {
  446. "input": {
  447. "type": "structure",
  448. "required": [
  449. "DBParameterGroupName",
  450. "DBParameterGroupFamily",
  451. "Description"
  452. ],
  453. "members": {
  454. "DBParameterGroupName": {},
  455. "DBParameterGroupFamily": {},
  456. "Description": {},
  457. "Tags": {
  458. "shape": "Sa"
  459. }
  460. }
  461. },
  462. "output": {
  463. "resultWrapper": "CreateDBParameterGroupResult",
  464. "type": "structure",
  465. "members": {
  466. "DBParameterGroup": {
  467. "shape": "St"
  468. }
  469. }
  470. }
  471. },
  472. "CreateDBSubnetGroup": {
  473. "input": {
  474. "type": "structure",
  475. "required": [
  476. "DBSubnetGroupName",
  477. "DBSubnetGroupDescription",
  478. "SubnetIds"
  479. ],
  480. "members": {
  481. "DBSubnetGroupName": {},
  482. "DBSubnetGroupDescription": {},
  483. "SubnetIds": {
  484. "shape": "S2c"
  485. },
  486. "Tags": {
  487. "shape": "Sa"
  488. }
  489. }
  490. },
  491. "output": {
  492. "resultWrapper": "CreateDBSubnetGroupResult",
  493. "type": "structure",
  494. "members": {
  495. "DBSubnetGroup": {
  496. "shape": "S1w"
  497. }
  498. }
  499. }
  500. },
  501. "CreateEventSubscription": {
  502. "input": {
  503. "type": "structure",
  504. "required": [
  505. "SubscriptionName",
  506. "SnsTopicArn"
  507. ],
  508. "members": {
  509. "SubscriptionName": {},
  510. "SnsTopicArn": {},
  511. "SourceType": {},
  512. "EventCategories": {
  513. "shape": "S7"
  514. },
  515. "SourceIds": {
  516. "shape": "S6"
  517. },
  518. "Enabled": {
  519. "type": "boolean"
  520. },
  521. "Tags": {
  522. "shape": "Sa"
  523. }
  524. }
  525. },
  526. "output": {
  527. "resultWrapper": "CreateEventSubscriptionResult",
  528. "type": "structure",
  529. "members": {
  530. "EventSubscription": {
  531. "shape": "S5"
  532. }
  533. }
  534. }
  535. },
  536. "CreateGlobalCluster": {
  537. "input": {
  538. "type": "structure",
  539. "required": [
  540. "GlobalClusterIdentifier"
  541. ],
  542. "members": {
  543. "GlobalClusterIdentifier": {},
  544. "SourceDBClusterIdentifier": {},
  545. "Engine": {},
  546. "EngineVersion": {},
  547. "DeletionProtection": {
  548. "type": "boolean"
  549. },
  550. "StorageEncrypted": {
  551. "type": "boolean"
  552. }
  553. }
  554. },
  555. "output": {
  556. "resultWrapper": "CreateGlobalClusterResult",
  557. "type": "structure",
  558. "members": {
  559. "GlobalCluster": {
  560. "shape": "S2i"
  561. }
  562. }
  563. }
  564. },
  565. "DeleteDBCluster": {
  566. "input": {
  567. "type": "structure",
  568. "required": [
  569. "DBClusterIdentifier"
  570. ],
  571. "members": {
  572. "DBClusterIdentifier": {},
  573. "SkipFinalSnapshot": {
  574. "type": "boolean"
  575. },
  576. "FinalDBSnapshotIdentifier": {}
  577. }
  578. },
  579. "output": {
  580. "resultWrapper": "DeleteDBClusterResult",
  581. "type": "structure",
  582. "members": {
  583. "DBCluster": {
  584. "shape": "S12"
  585. }
  586. }
  587. }
  588. },
  589. "DeleteDBClusterEndpoint": {
  590. "input": {
  591. "type": "structure",
  592. "required": [
  593. "DBClusterEndpointIdentifier"
  594. ],
  595. "members": {
  596. "DBClusterEndpointIdentifier": {}
  597. }
  598. },
  599. "output": {
  600. "resultWrapper": "DeleteDBClusterEndpointResult",
  601. "type": "structure",
  602. "members": {
  603. "DBClusterEndpointIdentifier": {},
  604. "DBClusterIdentifier": {},
  605. "DBClusterEndpointResourceIdentifier": {},
  606. "Endpoint": {},
  607. "Status": {},
  608. "EndpointType": {},
  609. "CustomEndpointType": {},
  610. "StaticMembers": {
  611. "shape": "S1g"
  612. },
  613. "ExcludedMembers": {
  614. "shape": "S1g"
  615. },
  616. "DBClusterEndpointArn": {}
  617. }
  618. }
  619. },
  620. "DeleteDBClusterParameterGroup": {
  621. "input": {
  622. "type": "structure",
  623. "required": [
  624. "DBClusterParameterGroupName"
  625. ],
  626. "members": {
  627. "DBClusterParameterGroupName": {}
  628. }
  629. }
  630. },
  631. "DeleteDBClusterSnapshot": {
  632. "input": {
  633. "type": "structure",
  634. "required": [
  635. "DBClusterSnapshotIdentifier"
  636. ],
  637. "members": {
  638. "DBClusterSnapshotIdentifier": {}
  639. }
  640. },
  641. "output": {
  642. "resultWrapper": "DeleteDBClusterSnapshotResult",
  643. "type": "structure",
  644. "members": {
  645. "DBClusterSnapshot": {
  646. "shape": "So"
  647. }
  648. }
  649. }
  650. },
  651. "DeleteDBInstance": {
  652. "input": {
  653. "type": "structure",
  654. "required": [
  655. "DBInstanceIdentifier"
  656. ],
  657. "members": {
  658. "DBInstanceIdentifier": {},
  659. "SkipFinalSnapshot": {
  660. "type": "boolean"
  661. },
  662. "FinalDBSnapshotIdentifier": {}
  663. }
  664. },
  665. "output": {
  666. "resultWrapper": "DeleteDBInstanceResult",
  667. "type": "structure",
  668. "members": {
  669. "DBInstance": {
  670. "shape": "S1q"
  671. }
  672. }
  673. }
  674. },
  675. "DeleteDBParameterGroup": {
  676. "input": {
  677. "type": "structure",
  678. "required": [
  679. "DBParameterGroupName"
  680. ],
  681. "members": {
  682. "DBParameterGroupName": {}
  683. }
  684. }
  685. },
  686. "DeleteDBSubnetGroup": {
  687. "input": {
  688. "type": "structure",
  689. "required": [
  690. "DBSubnetGroupName"
  691. ],
  692. "members": {
  693. "DBSubnetGroupName": {}
  694. }
  695. }
  696. },
  697. "DeleteEventSubscription": {
  698. "input": {
  699. "type": "structure",
  700. "required": [
  701. "SubscriptionName"
  702. ],
  703. "members": {
  704. "SubscriptionName": {}
  705. }
  706. },
  707. "output": {
  708. "resultWrapper": "DeleteEventSubscriptionResult",
  709. "type": "structure",
  710. "members": {
  711. "EventSubscription": {
  712. "shape": "S5"
  713. }
  714. }
  715. }
  716. },
  717. "DeleteGlobalCluster": {
  718. "input": {
  719. "type": "structure",
  720. "required": [
  721. "GlobalClusterIdentifier"
  722. ],
  723. "members": {
  724. "GlobalClusterIdentifier": {}
  725. }
  726. },
  727. "output": {
  728. "resultWrapper": "DeleteGlobalClusterResult",
  729. "type": "structure",
  730. "members": {
  731. "GlobalCluster": {
  732. "shape": "S2i"
  733. }
  734. }
  735. }
  736. },
  737. "DescribeDBClusterEndpoints": {
  738. "input": {
  739. "type": "structure",
  740. "members": {
  741. "DBClusterIdentifier": {},
  742. "DBClusterEndpointIdentifier": {},
  743. "Filters": {
  744. "shape": "S32"
  745. },
  746. "MaxRecords": {
  747. "type": "integer"
  748. },
  749. "Marker": {}
  750. }
  751. },
  752. "output": {
  753. "resultWrapper": "DescribeDBClusterEndpointsResult",
  754. "type": "structure",
  755. "members": {
  756. "Marker": {},
  757. "DBClusterEndpoints": {
  758. "type": "list",
  759. "member": {
  760. "locationName": "DBClusterEndpointList",
  761. "type": "structure",
  762. "members": {
  763. "DBClusterEndpointIdentifier": {},
  764. "DBClusterIdentifier": {},
  765. "DBClusterEndpointResourceIdentifier": {},
  766. "Endpoint": {},
  767. "Status": {},
  768. "EndpointType": {},
  769. "CustomEndpointType": {},
  770. "StaticMembers": {
  771. "shape": "S1g"
  772. },
  773. "ExcludedMembers": {
  774. "shape": "S1g"
  775. },
  776. "DBClusterEndpointArn": {}
  777. }
  778. }
  779. }
  780. }
  781. }
  782. },
  783. "DescribeDBClusterParameterGroups": {
  784. "input": {
  785. "type": "structure",
  786. "members": {
  787. "DBClusterParameterGroupName": {},
  788. "Filters": {
  789. "shape": "S32"
  790. },
  791. "MaxRecords": {
  792. "type": "integer"
  793. },
  794. "Marker": {}
  795. }
  796. },
  797. "output": {
  798. "resultWrapper": "DescribeDBClusterParameterGroupsResult",
  799. "type": "structure",
  800. "members": {
  801. "Marker": {},
  802. "DBClusterParameterGroups": {
  803. "type": "list",
  804. "member": {
  805. "shape": "Sk",
  806. "locationName": "DBClusterParameterGroup"
  807. }
  808. }
  809. }
  810. }
  811. },
  812. "DescribeDBClusterParameters": {
  813. "input": {
  814. "type": "structure",
  815. "required": [
  816. "DBClusterParameterGroupName"
  817. ],
  818. "members": {
  819. "DBClusterParameterGroupName": {},
  820. "Source": {},
  821. "Filters": {
  822. "shape": "S32"
  823. },
  824. "MaxRecords": {
  825. "type": "integer"
  826. },
  827. "Marker": {}
  828. }
  829. },
  830. "output": {
  831. "resultWrapper": "DescribeDBClusterParametersResult",
  832. "type": "structure",
  833. "members": {
  834. "Parameters": {
  835. "shape": "S3d"
  836. },
  837. "Marker": {}
  838. }
  839. }
  840. },
  841. "DescribeDBClusterSnapshotAttributes": {
  842. "input": {
  843. "type": "structure",
  844. "required": [
  845. "DBClusterSnapshotIdentifier"
  846. ],
  847. "members": {
  848. "DBClusterSnapshotIdentifier": {}
  849. }
  850. },
  851. "output": {
  852. "resultWrapper": "DescribeDBClusterSnapshotAttributesResult",
  853. "type": "structure",
  854. "members": {
  855. "DBClusterSnapshotAttributesResult": {
  856. "shape": "S3i"
  857. }
  858. }
  859. }
  860. },
  861. "DescribeDBClusterSnapshots": {
  862. "input": {
  863. "type": "structure",
  864. "members": {
  865. "DBClusterIdentifier": {},
  866. "DBClusterSnapshotIdentifier": {},
  867. "SnapshotType": {},
  868. "Filters": {
  869. "shape": "S32"
  870. },
  871. "MaxRecords": {
  872. "type": "integer"
  873. },
  874. "Marker": {},
  875. "IncludeShared": {
  876. "type": "boolean"
  877. },
  878. "IncludePublic": {
  879. "type": "boolean"
  880. }
  881. }
  882. },
  883. "output": {
  884. "resultWrapper": "DescribeDBClusterSnapshotsResult",
  885. "type": "structure",
  886. "members": {
  887. "Marker": {},
  888. "DBClusterSnapshots": {
  889. "type": "list",
  890. "member": {
  891. "shape": "So",
  892. "locationName": "DBClusterSnapshot"
  893. }
  894. }
  895. }
  896. }
  897. },
  898. "DescribeDBClusters": {
  899. "input": {
  900. "type": "structure",
  901. "members": {
  902. "DBClusterIdentifier": {},
  903. "Filters": {
  904. "shape": "S32"
  905. },
  906. "MaxRecords": {
  907. "type": "integer"
  908. },
  909. "Marker": {}
  910. }
  911. },
  912. "output": {
  913. "resultWrapper": "DescribeDBClustersResult",
  914. "type": "structure",
  915. "members": {
  916. "Marker": {},
  917. "DBClusters": {
  918. "type": "list",
  919. "member": {
  920. "shape": "S12",
  921. "locationName": "DBCluster"
  922. }
  923. }
  924. }
  925. }
  926. },
  927. "DescribeDBEngineVersions": {
  928. "input": {
  929. "type": "structure",
  930. "members": {
  931. "Engine": {},
  932. "EngineVersion": {},
  933. "DBParameterGroupFamily": {},
  934. "Filters": {
  935. "shape": "S32"
  936. },
  937. "MaxRecords": {
  938. "type": "integer"
  939. },
  940. "Marker": {},
  941. "DefaultOnly": {
  942. "type": "boolean"
  943. },
  944. "ListSupportedCharacterSets": {
  945. "type": "boolean"
  946. },
  947. "ListSupportedTimezones": {
  948. "type": "boolean"
  949. }
  950. }
  951. },
  952. "output": {
  953. "resultWrapper": "DescribeDBEngineVersionsResult",
  954. "type": "structure",
  955. "members": {
  956. "Marker": {},
  957. "DBEngineVersions": {
  958. "type": "list",
  959. "member": {
  960. "locationName": "DBEngineVersion",
  961. "type": "structure",
  962. "members": {
  963. "Engine": {},
  964. "EngineVersion": {},
  965. "DBParameterGroupFamily": {},
  966. "DBEngineDescription": {},
  967. "DBEngineVersionDescription": {},
  968. "DefaultCharacterSet": {
  969. "shape": "S3w"
  970. },
  971. "SupportedCharacterSets": {
  972. "type": "list",
  973. "member": {
  974. "shape": "S3w",
  975. "locationName": "CharacterSet"
  976. }
  977. },
  978. "ValidUpgradeTarget": {
  979. "type": "list",
  980. "member": {
  981. "locationName": "UpgradeTarget",
  982. "type": "structure",
  983. "members": {
  984. "Engine": {},
  985. "EngineVersion": {},
  986. "Description": {},
  987. "AutoUpgrade": {
  988. "type": "boolean"
  989. },
  990. "IsMajorVersionUpgrade": {
  991. "type": "boolean"
  992. },
  993. "SupportsGlobalDatabases": {
  994. "type": "boolean"
  995. }
  996. }
  997. }
  998. },
  999. "SupportedTimezones": {
  1000. "type": "list",
  1001. "member": {
  1002. "locationName": "Timezone",
  1003. "type": "structure",
  1004. "members": {
  1005. "TimezoneName": {}
  1006. }
  1007. }
  1008. },
  1009. "ExportableLogTypes": {
  1010. "shape": "Sx"
  1011. },
  1012. "SupportsLogExportsToCloudwatchLogs": {
  1013. "type": "boolean"
  1014. },
  1015. "SupportsReadReplica": {
  1016. "type": "boolean"
  1017. },
  1018. "SupportsGlobalDatabases": {
  1019. "type": "boolean"
  1020. }
  1021. }
  1022. }
  1023. }
  1024. }
  1025. }
  1026. },
  1027. "DescribeDBInstances": {
  1028. "input": {
  1029. "type": "structure",
  1030. "members": {
  1031. "DBInstanceIdentifier": {},
  1032. "Filters": {
  1033. "shape": "S32"
  1034. },
  1035. "MaxRecords": {
  1036. "type": "integer"
  1037. },
  1038. "Marker": {}
  1039. }
  1040. },
  1041. "output": {
  1042. "resultWrapper": "DescribeDBInstancesResult",
  1043. "type": "structure",
  1044. "members": {
  1045. "Marker": {},
  1046. "DBInstances": {
  1047. "type": "list",
  1048. "member": {
  1049. "shape": "S1q",
  1050. "locationName": "DBInstance"
  1051. }
  1052. }
  1053. }
  1054. }
  1055. },
  1056. "DescribeDBParameterGroups": {
  1057. "input": {
  1058. "type": "structure",
  1059. "members": {
  1060. "DBParameterGroupName": {},
  1061. "Filters": {
  1062. "shape": "S32"
  1063. },
  1064. "MaxRecords": {
  1065. "type": "integer"
  1066. },
  1067. "Marker": {}
  1068. }
  1069. },
  1070. "output": {
  1071. "resultWrapper": "DescribeDBParameterGroupsResult",
  1072. "type": "structure",
  1073. "members": {
  1074. "Marker": {},
  1075. "DBParameterGroups": {
  1076. "type": "list",
  1077. "member": {
  1078. "shape": "St",
  1079. "locationName": "DBParameterGroup"
  1080. }
  1081. }
  1082. }
  1083. }
  1084. },
  1085. "DescribeDBParameters": {
  1086. "input": {
  1087. "type": "structure",
  1088. "required": [
  1089. "DBParameterGroupName"
  1090. ],
  1091. "members": {
  1092. "DBParameterGroupName": {},
  1093. "Source": {},
  1094. "Filters": {
  1095. "shape": "S32"
  1096. },
  1097. "MaxRecords": {
  1098. "type": "integer"
  1099. },
  1100. "Marker": {}
  1101. }
  1102. },
  1103. "output": {
  1104. "resultWrapper": "DescribeDBParametersResult",
  1105. "type": "structure",
  1106. "members": {
  1107. "Parameters": {
  1108. "shape": "S3d"
  1109. },
  1110. "Marker": {}
  1111. }
  1112. }
  1113. },
  1114. "DescribeDBSubnetGroups": {
  1115. "input": {
  1116. "type": "structure",
  1117. "members": {
  1118. "DBSubnetGroupName": {},
  1119. "Filters": {
  1120. "shape": "S32"
  1121. },
  1122. "MaxRecords": {
  1123. "type": "integer"
  1124. },
  1125. "Marker": {}
  1126. }
  1127. },
  1128. "output": {
  1129. "resultWrapper": "DescribeDBSubnetGroupsResult",
  1130. "type": "structure",
  1131. "members": {
  1132. "Marker": {},
  1133. "DBSubnetGroups": {
  1134. "type": "list",
  1135. "member": {
  1136. "shape": "S1w",
  1137. "locationName": "DBSubnetGroup"
  1138. }
  1139. }
  1140. }
  1141. }
  1142. },
  1143. "DescribeEngineDefaultClusterParameters": {
  1144. "input": {
  1145. "type": "structure",
  1146. "required": [
  1147. "DBParameterGroupFamily"
  1148. ],
  1149. "members": {
  1150. "DBParameterGroupFamily": {},
  1151. "Filters": {
  1152. "shape": "S32"
  1153. },
  1154. "MaxRecords": {
  1155. "type": "integer"
  1156. },
  1157. "Marker": {}
  1158. }
  1159. },
  1160. "output": {
  1161. "resultWrapper": "DescribeEngineDefaultClusterParametersResult",
  1162. "type": "structure",
  1163. "members": {
  1164. "EngineDefaults": {
  1165. "shape": "S4f"
  1166. }
  1167. }
  1168. }
  1169. },
  1170. "DescribeEngineDefaultParameters": {
  1171. "input": {
  1172. "type": "structure",
  1173. "required": [
  1174. "DBParameterGroupFamily"
  1175. ],
  1176. "members": {
  1177. "DBParameterGroupFamily": {},
  1178. "Filters": {
  1179. "shape": "S32"
  1180. },
  1181. "MaxRecords": {
  1182. "type": "integer"
  1183. },
  1184. "Marker": {}
  1185. }
  1186. },
  1187. "output": {
  1188. "resultWrapper": "DescribeEngineDefaultParametersResult",
  1189. "type": "structure",
  1190. "members": {
  1191. "EngineDefaults": {
  1192. "shape": "S4f"
  1193. }
  1194. }
  1195. }
  1196. },
  1197. "DescribeEventCategories": {
  1198. "input": {
  1199. "type": "structure",
  1200. "members": {
  1201. "SourceType": {},
  1202. "Filters": {
  1203. "shape": "S32"
  1204. }
  1205. }
  1206. },
  1207. "output": {
  1208. "resultWrapper": "DescribeEventCategoriesResult",
  1209. "type": "structure",
  1210. "members": {
  1211. "EventCategoriesMapList": {
  1212. "type": "list",
  1213. "member": {
  1214. "locationName": "EventCategoriesMap",
  1215. "type": "structure",
  1216. "members": {
  1217. "SourceType": {},
  1218. "EventCategories": {
  1219. "shape": "S7"
  1220. }
  1221. },
  1222. "wrapper": true
  1223. }
  1224. }
  1225. }
  1226. }
  1227. },
  1228. "DescribeEventSubscriptions": {
  1229. "input": {
  1230. "type": "structure",
  1231. "members": {
  1232. "SubscriptionName": {},
  1233. "Filters": {
  1234. "shape": "S32"
  1235. },
  1236. "MaxRecords": {
  1237. "type": "integer"
  1238. },
  1239. "Marker": {}
  1240. }
  1241. },
  1242. "output": {
  1243. "resultWrapper": "DescribeEventSubscriptionsResult",
  1244. "type": "structure",
  1245. "members": {
  1246. "Marker": {},
  1247. "EventSubscriptionsList": {
  1248. "type": "list",
  1249. "member": {
  1250. "shape": "S5",
  1251. "locationName": "EventSubscription"
  1252. }
  1253. }
  1254. }
  1255. }
  1256. },
  1257. "DescribeEvents": {
  1258. "input": {
  1259. "type": "structure",
  1260. "members": {
  1261. "SourceIdentifier": {},
  1262. "SourceType": {},
  1263. "StartTime": {
  1264. "type": "timestamp"
  1265. },
  1266. "EndTime": {
  1267. "type": "timestamp"
  1268. },
  1269. "Duration": {
  1270. "type": "integer"
  1271. },
  1272. "EventCategories": {
  1273. "shape": "S7"
  1274. },
  1275. "Filters": {
  1276. "shape": "S32"
  1277. },
  1278. "MaxRecords": {
  1279. "type": "integer"
  1280. },
  1281. "Marker": {}
  1282. }
  1283. },
  1284. "output": {
  1285. "resultWrapper": "DescribeEventsResult",
  1286. "type": "structure",
  1287. "members": {
  1288. "Marker": {},
  1289. "Events": {
  1290. "type": "list",
  1291. "member": {
  1292. "locationName": "Event",
  1293. "type": "structure",
  1294. "members": {
  1295. "SourceIdentifier": {},
  1296. "SourceType": {},
  1297. "Message": {},
  1298. "EventCategories": {
  1299. "shape": "S7"
  1300. },
  1301. "Date": {
  1302. "type": "timestamp"
  1303. },
  1304. "SourceArn": {}
  1305. }
  1306. }
  1307. }
  1308. }
  1309. }
  1310. },
  1311. "DescribeGlobalClusters": {
  1312. "input": {
  1313. "type": "structure",
  1314. "members": {
  1315. "GlobalClusterIdentifier": {},
  1316. "MaxRecords": {
  1317. "type": "integer"
  1318. },
  1319. "Marker": {}
  1320. }
  1321. },
  1322. "output": {
  1323. "resultWrapper": "DescribeGlobalClustersResult",
  1324. "type": "structure",
  1325. "members": {
  1326. "Marker": {},
  1327. "GlobalClusters": {
  1328. "type": "list",
  1329. "member": {
  1330. "shape": "S2i",
  1331. "locationName": "GlobalClusterMember"
  1332. }
  1333. }
  1334. }
  1335. }
  1336. },
  1337. "DescribeOrderableDBInstanceOptions": {
  1338. "input": {
  1339. "type": "structure",
  1340. "required": [
  1341. "Engine"
  1342. ],
  1343. "members": {
  1344. "Engine": {},
  1345. "EngineVersion": {},
  1346. "DBInstanceClass": {},
  1347. "LicenseModel": {},
  1348. "Vpc": {
  1349. "type": "boolean"
  1350. },
  1351. "Filters": {
  1352. "shape": "S32"
  1353. },
  1354. "MaxRecords": {
  1355. "type": "integer"
  1356. },
  1357. "Marker": {}
  1358. }
  1359. },
  1360. "output": {
  1361. "resultWrapper": "DescribeOrderableDBInstanceOptionsResult",
  1362. "type": "structure",
  1363. "members": {
  1364. "OrderableDBInstanceOptions": {
  1365. "type": "list",
  1366. "member": {
  1367. "locationName": "OrderableDBInstanceOption",
  1368. "type": "structure",
  1369. "members": {
  1370. "Engine": {},
  1371. "EngineVersion": {},
  1372. "DBInstanceClass": {},
  1373. "LicenseModel": {},
  1374. "AvailabilityZones": {
  1375. "type": "list",
  1376. "member": {
  1377. "shape": "S1z",
  1378. "locationName": "AvailabilityZone"
  1379. }
  1380. },
  1381. "MultiAZCapable": {
  1382. "type": "boolean"
  1383. },
  1384. "ReadReplicaCapable": {
  1385. "type": "boolean"
  1386. },
  1387. "Vpc": {
  1388. "type": "boolean"
  1389. },
  1390. "SupportsStorageEncryption": {
  1391. "type": "boolean"
  1392. },
  1393. "StorageType": {},
  1394. "SupportsIops": {
  1395. "type": "boolean"
  1396. },
  1397. "SupportsEnhancedMonitoring": {
  1398. "type": "boolean"
  1399. },
  1400. "SupportsIAMDatabaseAuthentication": {
  1401. "type": "boolean"
  1402. },
  1403. "SupportsPerformanceInsights": {
  1404. "type": "boolean"
  1405. },
  1406. "MinStorageSize": {
  1407. "type": "integer"
  1408. },
  1409. "MaxStorageSize": {
  1410. "type": "integer"
  1411. },
  1412. "MinIopsPerDbInstance": {
  1413. "type": "integer"
  1414. },
  1415. "MaxIopsPerDbInstance": {
  1416. "type": "integer"
  1417. },
  1418. "MinIopsPerGib": {
  1419. "type": "double"
  1420. },
  1421. "MaxIopsPerGib": {
  1422. "type": "double"
  1423. },
  1424. "SupportsGlobalDatabases": {
  1425. "type": "boolean"
  1426. }
  1427. },
  1428. "wrapper": true
  1429. }
  1430. },
  1431. "Marker": {}
  1432. }
  1433. }
  1434. },
  1435. "DescribePendingMaintenanceActions": {
  1436. "input": {
  1437. "type": "structure",
  1438. "members": {
  1439. "ResourceIdentifier": {},
  1440. "Filters": {
  1441. "shape": "S32"
  1442. },
  1443. "Marker": {},
  1444. "MaxRecords": {
  1445. "type": "integer"
  1446. }
  1447. }
  1448. },
  1449. "output": {
  1450. "resultWrapper": "DescribePendingMaintenanceActionsResult",
  1451. "type": "structure",
  1452. "members": {
  1453. "PendingMaintenanceActions": {
  1454. "type": "list",
  1455. "member": {
  1456. "shape": "Se",
  1457. "locationName": "ResourcePendingMaintenanceActions"
  1458. }
  1459. },
  1460. "Marker": {}
  1461. }
  1462. }
  1463. },
  1464. "DescribeValidDBInstanceModifications": {
  1465. "input": {
  1466. "type": "structure",
  1467. "required": [
  1468. "DBInstanceIdentifier"
  1469. ],
  1470. "members": {
  1471. "DBInstanceIdentifier": {}
  1472. }
  1473. },
  1474. "output": {
  1475. "resultWrapper": "DescribeValidDBInstanceModificationsResult",
  1476. "type": "structure",
  1477. "members": {
  1478. "ValidDBInstanceModificationsMessage": {
  1479. "type": "structure",
  1480. "members": {
  1481. "Storage": {
  1482. "type": "list",
  1483. "member": {
  1484. "locationName": "ValidStorageOptions",
  1485. "type": "structure",
  1486. "members": {
  1487. "StorageType": {},
  1488. "StorageSize": {
  1489. "shape": "S5a"
  1490. },
  1491. "ProvisionedIops": {
  1492. "shape": "S5a"
  1493. },
  1494. "IopsToStorageRatio": {
  1495. "type": "list",
  1496. "member": {
  1497. "locationName": "DoubleRange",
  1498. "type": "structure",
  1499. "members": {
  1500. "From": {
  1501. "type": "double"
  1502. },
  1503. "To": {
  1504. "type": "double"
  1505. }
  1506. }
  1507. }
  1508. }
  1509. }
  1510. }
  1511. }
  1512. },
  1513. "wrapper": true
  1514. }
  1515. }
  1516. }
  1517. },
  1518. "FailoverDBCluster": {
  1519. "input": {
  1520. "type": "structure",
  1521. "members": {
  1522. "DBClusterIdentifier": {},
  1523. "TargetDBInstanceIdentifier": {}
  1524. }
  1525. },
  1526. "output": {
  1527. "resultWrapper": "FailoverDBClusterResult",
  1528. "type": "structure",
  1529. "members": {
  1530. "DBCluster": {
  1531. "shape": "S12"
  1532. }
  1533. }
  1534. }
  1535. },
  1536. "FailoverGlobalCluster": {
  1537. "input": {
  1538. "type": "structure",
  1539. "required": [
  1540. "GlobalClusterIdentifier",
  1541. "TargetDbClusterIdentifier"
  1542. ],
  1543. "members": {
  1544. "GlobalClusterIdentifier": {},
  1545. "TargetDbClusterIdentifier": {}
  1546. }
  1547. },
  1548. "output": {
  1549. "resultWrapper": "FailoverGlobalClusterResult",
  1550. "type": "structure",
  1551. "members": {
  1552. "GlobalCluster": {
  1553. "shape": "S2i"
  1554. }
  1555. }
  1556. }
  1557. },
  1558. "ListTagsForResource": {
  1559. "input": {
  1560. "type": "structure",
  1561. "required": [
  1562. "ResourceName"
  1563. ],
  1564. "members": {
  1565. "ResourceName": {},
  1566. "Filters": {
  1567. "shape": "S32"
  1568. }
  1569. }
  1570. },
  1571. "output": {
  1572. "resultWrapper": "ListTagsForResourceResult",
  1573. "type": "structure",
  1574. "members": {
  1575. "TagList": {
  1576. "shape": "Sa"
  1577. }
  1578. }
  1579. }
  1580. },
  1581. "ModifyDBCluster": {
  1582. "input": {
  1583. "type": "structure",
  1584. "required": [
  1585. "DBClusterIdentifier"
  1586. ],
  1587. "members": {
  1588. "DBClusterIdentifier": {},
  1589. "NewDBClusterIdentifier": {},
  1590. "ApplyImmediately": {
  1591. "type": "boolean"
  1592. },
  1593. "BackupRetentionPeriod": {
  1594. "type": "integer"
  1595. },
  1596. "DBClusterParameterGroupName": {},
  1597. "VpcSecurityGroupIds": {
  1598. "shape": "Sw"
  1599. },
  1600. "Port": {
  1601. "type": "integer"
  1602. },
  1603. "MasterUserPassword": {},
  1604. "OptionGroupName": {},
  1605. "PreferredBackupWindow": {},
  1606. "PreferredMaintenanceWindow": {},
  1607. "EnableIAMDatabaseAuthentication": {
  1608. "type": "boolean"
  1609. },
  1610. "CloudwatchLogsExportConfiguration": {
  1611. "shape": "S5m"
  1612. },
  1613. "EngineVersion": {},
  1614. "AllowMajorVersionUpgrade": {
  1615. "type": "boolean"
  1616. },
  1617. "DBInstanceParameterGroupName": {},
  1618. "DeletionProtection": {
  1619. "type": "boolean"
  1620. },
  1621. "CopyTagsToSnapshot": {
  1622. "type": "boolean"
  1623. },
  1624. "ServerlessV2ScalingConfiguration": {
  1625. "shape": "Sy"
  1626. },
  1627. "StorageType": {}
  1628. }
  1629. },
  1630. "output": {
  1631. "resultWrapper": "ModifyDBClusterResult",
  1632. "type": "structure",
  1633. "members": {
  1634. "DBCluster": {
  1635. "shape": "S12"
  1636. }
  1637. }
  1638. }
  1639. },
  1640. "ModifyDBClusterEndpoint": {
  1641. "input": {
  1642. "type": "structure",
  1643. "required": [
  1644. "DBClusterEndpointIdentifier"
  1645. ],
  1646. "members": {
  1647. "DBClusterEndpointIdentifier": {},
  1648. "EndpointType": {},
  1649. "StaticMembers": {
  1650. "shape": "S1g"
  1651. },
  1652. "ExcludedMembers": {
  1653. "shape": "S1g"
  1654. }
  1655. }
  1656. },
  1657. "output": {
  1658. "resultWrapper": "ModifyDBClusterEndpointResult",
  1659. "type": "structure",
  1660. "members": {
  1661. "DBClusterEndpointIdentifier": {},
  1662. "DBClusterIdentifier": {},
  1663. "DBClusterEndpointResourceIdentifier": {},
  1664. "Endpoint": {},
  1665. "Status": {},
  1666. "EndpointType": {},
  1667. "CustomEndpointType": {},
  1668. "StaticMembers": {
  1669. "shape": "S1g"
  1670. },
  1671. "ExcludedMembers": {
  1672. "shape": "S1g"
  1673. },
  1674. "DBClusterEndpointArn": {}
  1675. }
  1676. }
  1677. },
  1678. "ModifyDBClusterParameterGroup": {
  1679. "input": {
  1680. "type": "structure",
  1681. "required": [
  1682. "DBClusterParameterGroupName",
  1683. "Parameters"
  1684. ],
  1685. "members": {
  1686. "DBClusterParameterGroupName": {},
  1687. "Parameters": {
  1688. "shape": "S3d"
  1689. }
  1690. }
  1691. },
  1692. "output": {
  1693. "shape": "S5r",
  1694. "resultWrapper": "ModifyDBClusterParameterGroupResult"
  1695. }
  1696. },
  1697. "ModifyDBClusterSnapshotAttribute": {
  1698. "input": {
  1699. "type": "structure",
  1700. "required": [
  1701. "DBClusterSnapshotIdentifier",
  1702. "AttributeName"
  1703. ],
  1704. "members": {
  1705. "DBClusterSnapshotIdentifier": {},
  1706. "AttributeName": {},
  1707. "ValuesToAdd": {
  1708. "shape": "S3l"
  1709. },
  1710. "ValuesToRemove": {
  1711. "shape": "S3l"
  1712. }
  1713. }
  1714. },
  1715. "output": {
  1716. "resultWrapper": "ModifyDBClusterSnapshotAttributeResult",
  1717. "type": "structure",
  1718. "members": {
  1719. "DBClusterSnapshotAttributesResult": {
  1720. "shape": "S3i"
  1721. }
  1722. }
  1723. }
  1724. },
  1725. "ModifyDBInstance": {
  1726. "input": {
  1727. "type": "structure",
  1728. "required": [
  1729. "DBInstanceIdentifier"
  1730. ],
  1731. "members": {
  1732. "DBInstanceIdentifier": {},
  1733. "AllocatedStorage": {
  1734. "type": "integer"
  1735. },
  1736. "DBInstanceClass": {},
  1737. "DBSubnetGroupName": {},
  1738. "DBSecurityGroups": {
  1739. "shape": "S1n"
  1740. },
  1741. "VpcSecurityGroupIds": {
  1742. "shape": "Sw"
  1743. },
  1744. "ApplyImmediately": {
  1745. "type": "boolean"
  1746. },
  1747. "MasterUserPassword": {},
  1748. "DBParameterGroupName": {},
  1749. "BackupRetentionPeriod": {
  1750. "type": "integer"
  1751. },
  1752. "PreferredBackupWindow": {},
  1753. "PreferredMaintenanceWindow": {},
  1754. "MultiAZ": {
  1755. "type": "boolean"
  1756. },
  1757. "EngineVersion": {},
  1758. "AllowMajorVersionUpgrade": {
  1759. "type": "boolean"
  1760. },
  1761. "AutoMinorVersionUpgrade": {
  1762. "type": "boolean"
  1763. },
  1764. "LicenseModel": {},
  1765. "Iops": {
  1766. "type": "integer"
  1767. },
  1768. "OptionGroupName": {},
  1769. "NewDBInstanceIdentifier": {},
  1770. "StorageType": {},
  1771. "TdeCredentialArn": {},
  1772. "TdeCredentialPassword": {
  1773. "shape": "S1o"
  1774. },
  1775. "CACertificateIdentifier": {},
  1776. "Domain": {},
  1777. "CopyTagsToSnapshot": {
  1778. "type": "boolean"
  1779. },
  1780. "MonitoringInterval": {
  1781. "type": "integer"
  1782. },
  1783. "DBPortNumber": {
  1784. "type": "integer"
  1785. },
  1786. "PubliclyAccessible": {
  1787. "deprecated": true,
  1788. "type": "boolean"
  1789. },
  1790. "MonitoringRoleArn": {},
  1791. "DomainIAMRoleName": {},
  1792. "PromotionTier": {
  1793. "type": "integer"
  1794. },
  1795. "EnableIAMDatabaseAuthentication": {
  1796. "type": "boolean"
  1797. },
  1798. "EnablePerformanceInsights": {
  1799. "type": "boolean"
  1800. },
  1801. "PerformanceInsightsKMSKeyId": {},
  1802. "CloudwatchLogsExportConfiguration": {
  1803. "shape": "S5m"
  1804. },
  1805. "DeletionProtection": {
  1806. "type": "boolean"
  1807. }
  1808. }
  1809. },
  1810. "output": {
  1811. "resultWrapper": "ModifyDBInstanceResult",
  1812. "type": "structure",
  1813. "members": {
  1814. "DBInstance": {
  1815. "shape": "S1q"
  1816. }
  1817. }
  1818. }
  1819. },
  1820. "ModifyDBParameterGroup": {
  1821. "input": {
  1822. "type": "structure",
  1823. "required": [
  1824. "DBParameterGroupName",
  1825. "Parameters"
  1826. ],
  1827. "members": {
  1828. "DBParameterGroupName": {},
  1829. "Parameters": {
  1830. "shape": "S3d"
  1831. }
  1832. }
  1833. },
  1834. "output": {
  1835. "shape": "S5x",
  1836. "resultWrapper": "ModifyDBParameterGroupResult"
  1837. }
  1838. },
  1839. "ModifyDBSubnetGroup": {
  1840. "input": {
  1841. "type": "structure",
  1842. "required": [
  1843. "DBSubnetGroupName",
  1844. "SubnetIds"
  1845. ],
  1846. "members": {
  1847. "DBSubnetGroupName": {},
  1848. "DBSubnetGroupDescription": {},
  1849. "SubnetIds": {
  1850. "shape": "S2c"
  1851. }
  1852. }
  1853. },
  1854. "output": {
  1855. "resultWrapper": "ModifyDBSubnetGroupResult",
  1856. "type": "structure",
  1857. "members": {
  1858. "DBSubnetGroup": {
  1859. "shape": "S1w"
  1860. }
  1861. }
  1862. }
  1863. },
  1864. "ModifyEventSubscription": {
  1865. "input": {
  1866. "type": "structure",
  1867. "required": [
  1868. "SubscriptionName"
  1869. ],
  1870. "members": {
  1871. "SubscriptionName": {},
  1872. "SnsTopicArn": {},
  1873. "SourceType": {},
  1874. "EventCategories": {
  1875. "shape": "S7"
  1876. },
  1877. "Enabled": {
  1878. "type": "boolean"
  1879. }
  1880. }
  1881. },
  1882. "output": {
  1883. "resultWrapper": "ModifyEventSubscriptionResult",
  1884. "type": "structure",
  1885. "members": {
  1886. "EventSubscription": {
  1887. "shape": "S5"
  1888. }
  1889. }
  1890. }
  1891. },
  1892. "ModifyGlobalCluster": {
  1893. "input": {
  1894. "type": "structure",
  1895. "required": [
  1896. "GlobalClusterIdentifier"
  1897. ],
  1898. "members": {
  1899. "GlobalClusterIdentifier": {},
  1900. "NewGlobalClusterIdentifier": {},
  1901. "DeletionProtection": {
  1902. "type": "boolean"
  1903. },
  1904. "EngineVersion": {},
  1905. "AllowMajorVersionUpgrade": {
  1906. "type": "boolean"
  1907. }
  1908. }
  1909. },
  1910. "output": {
  1911. "resultWrapper": "ModifyGlobalClusterResult",
  1912. "type": "structure",
  1913. "members": {
  1914. "GlobalCluster": {
  1915. "shape": "S2i"
  1916. }
  1917. }
  1918. }
  1919. },
  1920. "PromoteReadReplicaDBCluster": {
  1921. "input": {
  1922. "type": "structure",
  1923. "required": [
  1924. "DBClusterIdentifier"
  1925. ],
  1926. "members": {
  1927. "DBClusterIdentifier": {}
  1928. }
  1929. },
  1930. "output": {
  1931. "resultWrapper": "PromoteReadReplicaDBClusterResult",
  1932. "type": "structure",
  1933. "members": {
  1934. "DBCluster": {
  1935. "shape": "S12"
  1936. }
  1937. }
  1938. }
  1939. },
  1940. "RebootDBInstance": {
  1941. "input": {
  1942. "type": "structure",
  1943. "required": [
  1944. "DBInstanceIdentifier"
  1945. ],
  1946. "members": {
  1947. "DBInstanceIdentifier": {},
  1948. "ForceFailover": {
  1949. "type": "boolean"
  1950. }
  1951. }
  1952. },
  1953. "output": {
  1954. "resultWrapper": "RebootDBInstanceResult",
  1955. "type": "structure",
  1956. "members": {
  1957. "DBInstance": {
  1958. "shape": "S1q"
  1959. }
  1960. }
  1961. }
  1962. },
  1963. "RemoveFromGlobalCluster": {
  1964. "input": {
  1965. "type": "structure",
  1966. "required": [
  1967. "GlobalClusterIdentifier",
  1968. "DbClusterIdentifier"
  1969. ],
  1970. "members": {
  1971. "GlobalClusterIdentifier": {},
  1972. "DbClusterIdentifier": {}
  1973. }
  1974. },
  1975. "output": {
  1976. "resultWrapper": "RemoveFromGlobalClusterResult",
  1977. "type": "structure",
  1978. "members": {
  1979. "GlobalCluster": {
  1980. "shape": "S2i"
  1981. }
  1982. }
  1983. }
  1984. },
  1985. "RemoveRoleFromDBCluster": {
  1986. "input": {
  1987. "type": "structure",
  1988. "required": [
  1989. "DBClusterIdentifier",
  1990. "RoleArn"
  1991. ],
  1992. "members": {
  1993. "DBClusterIdentifier": {},
  1994. "RoleArn": {},
  1995. "FeatureName": {}
  1996. }
  1997. }
  1998. },
  1999. "RemoveSourceIdentifierFromSubscription": {
  2000. "input": {
  2001. "type": "structure",
  2002. "required": [
  2003. "SubscriptionName",
  2004. "SourceIdentifier"
  2005. ],
  2006. "members": {
  2007. "SubscriptionName": {},
  2008. "SourceIdentifier": {}
  2009. }
  2010. },
  2011. "output": {
  2012. "resultWrapper": "RemoveSourceIdentifierFromSubscriptionResult",
  2013. "type": "structure",
  2014. "members": {
  2015. "EventSubscription": {
  2016. "shape": "S5"
  2017. }
  2018. }
  2019. }
  2020. },
  2021. "RemoveTagsFromResource": {
  2022. "input": {
  2023. "type": "structure",
  2024. "required": [
  2025. "ResourceName",
  2026. "TagKeys"
  2027. ],
  2028. "members": {
  2029. "ResourceName": {},
  2030. "TagKeys": {
  2031. "type": "list",
  2032. "member": {}
  2033. }
  2034. }
  2035. }
  2036. },
  2037. "ResetDBClusterParameterGroup": {
  2038. "input": {
  2039. "type": "structure",
  2040. "required": [
  2041. "DBClusterParameterGroupName"
  2042. ],
  2043. "members": {
  2044. "DBClusterParameterGroupName": {},
  2045. "ResetAllParameters": {
  2046. "type": "boolean"
  2047. },
  2048. "Parameters": {
  2049. "shape": "S3d"
  2050. }
  2051. }
  2052. },
  2053. "output": {
  2054. "shape": "S5r",
  2055. "resultWrapper": "ResetDBClusterParameterGroupResult"
  2056. }
  2057. },
  2058. "ResetDBParameterGroup": {
  2059. "input": {
  2060. "type": "structure",
  2061. "required": [
  2062. "DBParameterGroupName"
  2063. ],
  2064. "members": {
  2065. "DBParameterGroupName": {},
  2066. "ResetAllParameters": {
  2067. "type": "boolean"
  2068. },
  2069. "Parameters": {
  2070. "shape": "S3d"
  2071. }
  2072. }
  2073. },
  2074. "output": {
  2075. "shape": "S5x",
  2076. "resultWrapper": "ResetDBParameterGroupResult"
  2077. }
  2078. },
  2079. "RestoreDBClusterFromSnapshot": {
  2080. "input": {
  2081. "type": "structure",
  2082. "required": [
  2083. "DBClusterIdentifier",
  2084. "SnapshotIdentifier",
  2085. "Engine"
  2086. ],
  2087. "members": {
  2088. "AvailabilityZones": {
  2089. "shape": "Sp"
  2090. },
  2091. "DBClusterIdentifier": {},
  2092. "SnapshotIdentifier": {},
  2093. "Engine": {},
  2094. "EngineVersion": {},
  2095. "Port": {
  2096. "type": "integer"
  2097. },
  2098. "DBSubnetGroupName": {},
  2099. "DatabaseName": {},
  2100. "OptionGroupName": {},
  2101. "VpcSecurityGroupIds": {
  2102. "shape": "Sw"
  2103. },
  2104. "Tags": {
  2105. "shape": "Sa"
  2106. },
  2107. "KmsKeyId": {},
  2108. "EnableIAMDatabaseAuthentication": {
  2109. "type": "boolean"
  2110. },
  2111. "EnableCloudwatchLogsExports": {
  2112. "shape": "Sx"
  2113. },
  2114. "DBClusterParameterGroupName": {},
  2115. "DeletionProtection": {
  2116. "type": "boolean"
  2117. },
  2118. "CopyTagsToSnapshot": {
  2119. "type": "boolean"
  2120. },
  2121. "ServerlessV2ScalingConfiguration": {
  2122. "shape": "Sy"
  2123. },
  2124. "StorageType": {}
  2125. }
  2126. },
  2127. "output": {
  2128. "resultWrapper": "RestoreDBClusterFromSnapshotResult",
  2129. "type": "structure",
  2130. "members": {
  2131. "DBCluster": {
  2132. "shape": "S12"
  2133. }
  2134. }
  2135. }
  2136. },
  2137. "RestoreDBClusterToPointInTime": {
  2138. "input": {
  2139. "type": "structure",
  2140. "required": [
  2141. "DBClusterIdentifier",
  2142. "SourceDBClusterIdentifier"
  2143. ],
  2144. "members": {
  2145. "DBClusterIdentifier": {},
  2146. "RestoreType": {},
  2147. "SourceDBClusterIdentifier": {},
  2148. "RestoreToTime": {
  2149. "type": "timestamp"
  2150. },
  2151. "UseLatestRestorableTime": {
  2152. "type": "boolean"
  2153. },
  2154. "Port": {
  2155. "type": "integer"
  2156. },
  2157. "DBSubnetGroupName": {},
  2158. "OptionGroupName": {},
  2159. "VpcSecurityGroupIds": {
  2160. "shape": "Sw"
  2161. },
  2162. "Tags": {
  2163. "shape": "Sa"
  2164. },
  2165. "KmsKeyId": {},
  2166. "EnableIAMDatabaseAuthentication": {
  2167. "type": "boolean"
  2168. },
  2169. "EnableCloudwatchLogsExports": {
  2170. "shape": "Sx"
  2171. },
  2172. "DBClusterParameterGroupName": {},
  2173. "DeletionProtection": {
  2174. "type": "boolean"
  2175. },
  2176. "ServerlessV2ScalingConfiguration": {
  2177. "shape": "Sy"
  2178. },
  2179. "StorageType": {}
  2180. }
  2181. },
  2182. "output": {
  2183. "resultWrapper": "RestoreDBClusterToPointInTimeResult",
  2184. "type": "structure",
  2185. "members": {
  2186. "DBCluster": {
  2187. "shape": "S12"
  2188. }
  2189. }
  2190. }
  2191. },
  2192. "StartDBCluster": {
  2193. "input": {
  2194. "type": "structure",
  2195. "required": [
  2196. "DBClusterIdentifier"
  2197. ],
  2198. "members": {
  2199. "DBClusterIdentifier": {}
  2200. }
  2201. },
  2202. "output": {
  2203. "resultWrapper": "StartDBClusterResult",
  2204. "type": "structure",
  2205. "members": {
  2206. "DBCluster": {
  2207. "shape": "S12"
  2208. }
  2209. }
  2210. }
  2211. },
  2212. "StopDBCluster": {
  2213. "input": {
  2214. "type": "structure",
  2215. "required": [
  2216. "DBClusterIdentifier"
  2217. ],
  2218. "members": {
  2219. "DBClusterIdentifier": {}
  2220. }
  2221. },
  2222. "output": {
  2223. "resultWrapper": "StopDBClusterResult",
  2224. "type": "structure",
  2225. "members": {
  2226. "DBCluster": {
  2227. "shape": "S12"
  2228. }
  2229. }
  2230. }
  2231. }
  2232. },
  2233. "shapes": {
  2234. "S5": {
  2235. "type": "structure",
  2236. "members": {
  2237. "CustomerAwsId": {},
  2238. "CustSubscriptionId": {},
  2239. "SnsTopicArn": {},
  2240. "Status": {},
  2241. "SubscriptionCreationTime": {},
  2242. "SourceType": {},
  2243. "SourceIdsList": {
  2244. "shape": "S6"
  2245. },
  2246. "EventCategoriesList": {
  2247. "shape": "S7"
  2248. },
  2249. "Enabled": {
  2250. "type": "boolean"
  2251. },
  2252. "EventSubscriptionArn": {}
  2253. },
  2254. "wrapper": true
  2255. },
  2256. "S6": {
  2257. "type": "list",
  2258. "member": {
  2259. "locationName": "SourceId"
  2260. }
  2261. },
  2262. "S7": {
  2263. "type": "list",
  2264. "member": {
  2265. "locationName": "EventCategory"
  2266. }
  2267. },
  2268. "Sa": {
  2269. "type": "list",
  2270. "member": {
  2271. "locationName": "Tag",
  2272. "type": "structure",
  2273. "members": {
  2274. "Key": {},
  2275. "Value": {}
  2276. }
  2277. }
  2278. },
  2279. "Se": {
  2280. "type": "structure",
  2281. "members": {
  2282. "ResourceIdentifier": {},
  2283. "PendingMaintenanceActionDetails": {
  2284. "type": "list",
  2285. "member": {
  2286. "locationName": "PendingMaintenanceAction",
  2287. "type": "structure",
  2288. "members": {
  2289. "Action": {},
  2290. "AutoAppliedAfterDate": {
  2291. "type": "timestamp"
  2292. },
  2293. "ForcedApplyDate": {
  2294. "type": "timestamp"
  2295. },
  2296. "OptInStatus": {},
  2297. "CurrentApplyDate": {
  2298. "type": "timestamp"
  2299. },
  2300. "Description": {}
  2301. }
  2302. }
  2303. }
  2304. },
  2305. "wrapper": true
  2306. },
  2307. "Sk": {
  2308. "type": "structure",
  2309. "members": {
  2310. "DBClusterParameterGroupName": {},
  2311. "DBParameterGroupFamily": {},
  2312. "Description": {},
  2313. "DBClusterParameterGroupArn": {}
  2314. },
  2315. "wrapper": true
  2316. },
  2317. "So": {
  2318. "type": "structure",
  2319. "members": {
  2320. "AvailabilityZones": {
  2321. "shape": "Sp"
  2322. },
  2323. "DBClusterSnapshotIdentifier": {},
  2324. "DBClusterIdentifier": {},
  2325. "SnapshotCreateTime": {
  2326. "type": "timestamp"
  2327. },
  2328. "Engine": {},
  2329. "AllocatedStorage": {
  2330. "type": "integer"
  2331. },
  2332. "Status": {},
  2333. "Port": {
  2334. "type": "integer"
  2335. },
  2336. "VpcId": {},
  2337. "ClusterCreateTime": {
  2338. "type": "timestamp"
  2339. },
  2340. "MasterUsername": {},
  2341. "EngineVersion": {},
  2342. "LicenseModel": {},
  2343. "SnapshotType": {},
  2344. "PercentProgress": {
  2345. "type": "integer"
  2346. },
  2347. "StorageEncrypted": {
  2348. "type": "boolean"
  2349. },
  2350. "KmsKeyId": {},
  2351. "DBClusterSnapshotArn": {},
  2352. "SourceDBClusterSnapshotArn": {},
  2353. "IAMDatabaseAuthenticationEnabled": {
  2354. "type": "boolean"
  2355. },
  2356. "StorageType": {}
  2357. },
  2358. "wrapper": true
  2359. },
  2360. "Sp": {
  2361. "type": "list",
  2362. "member": {
  2363. "locationName": "AvailabilityZone"
  2364. }
  2365. },
  2366. "St": {
  2367. "type": "structure",
  2368. "members": {
  2369. "DBParameterGroupName": {},
  2370. "DBParameterGroupFamily": {},
  2371. "Description": {},
  2372. "DBParameterGroupArn": {}
  2373. },
  2374. "wrapper": true
  2375. },
  2376. "Sw": {
  2377. "type": "list",
  2378. "member": {
  2379. "locationName": "VpcSecurityGroupId"
  2380. }
  2381. },
  2382. "Sx": {
  2383. "type": "list",
  2384. "member": {}
  2385. },
  2386. "Sy": {
  2387. "type": "structure",
  2388. "members": {
  2389. "MinCapacity": {
  2390. "type": "double"
  2391. },
  2392. "MaxCapacity": {
  2393. "type": "double"
  2394. }
  2395. }
  2396. },
  2397. "S12": {
  2398. "type": "structure",
  2399. "members": {
  2400. "AllocatedStorage": {
  2401. "type": "integer"
  2402. },
  2403. "AvailabilityZones": {
  2404. "shape": "Sp"
  2405. },
  2406. "BackupRetentionPeriod": {
  2407. "type": "integer"
  2408. },
  2409. "CharacterSetName": {},
  2410. "DatabaseName": {},
  2411. "DBClusterIdentifier": {},
  2412. "DBClusterParameterGroup": {},
  2413. "DBSubnetGroup": {},
  2414. "Status": {},
  2415. "PercentProgress": {},
  2416. "EarliestRestorableTime": {
  2417. "type": "timestamp"
  2418. },
  2419. "Endpoint": {},
  2420. "ReaderEndpoint": {},
  2421. "MultiAZ": {
  2422. "type": "boolean"
  2423. },
  2424. "Engine": {},
  2425. "EngineVersion": {},
  2426. "LatestRestorableTime": {
  2427. "type": "timestamp"
  2428. },
  2429. "Port": {
  2430. "type": "integer"
  2431. },
  2432. "MasterUsername": {},
  2433. "DBClusterOptionGroupMemberships": {
  2434. "type": "list",
  2435. "member": {
  2436. "locationName": "DBClusterOptionGroup",
  2437. "type": "structure",
  2438. "members": {
  2439. "DBClusterOptionGroupName": {},
  2440. "Status": {}
  2441. }
  2442. }
  2443. },
  2444. "PreferredBackupWindow": {},
  2445. "PreferredMaintenanceWindow": {},
  2446. "ReplicationSourceIdentifier": {},
  2447. "ReadReplicaIdentifiers": {
  2448. "type": "list",
  2449. "member": {
  2450. "locationName": "ReadReplicaIdentifier"
  2451. }
  2452. },
  2453. "DBClusterMembers": {
  2454. "type": "list",
  2455. "member": {
  2456. "locationName": "DBClusterMember",
  2457. "type": "structure",
  2458. "members": {
  2459. "DBInstanceIdentifier": {},
  2460. "IsClusterWriter": {
  2461. "type": "boolean"
  2462. },
  2463. "DBClusterParameterGroupStatus": {},
  2464. "PromotionTier": {
  2465. "type": "integer"
  2466. }
  2467. },
  2468. "wrapper": true
  2469. }
  2470. },
  2471. "VpcSecurityGroups": {
  2472. "shape": "S18"
  2473. },
  2474. "HostedZoneId": {},
  2475. "StorageEncrypted": {
  2476. "type": "boolean"
  2477. },
  2478. "KmsKeyId": {},
  2479. "DbClusterResourceId": {},
  2480. "DBClusterArn": {},
  2481. "AssociatedRoles": {
  2482. "type": "list",
  2483. "member": {
  2484. "locationName": "DBClusterRole",
  2485. "type": "structure",
  2486. "members": {
  2487. "RoleArn": {},
  2488. "Status": {},
  2489. "FeatureName": {}
  2490. }
  2491. }
  2492. },
  2493. "IAMDatabaseAuthenticationEnabled": {
  2494. "type": "boolean"
  2495. },
  2496. "CloneGroupId": {},
  2497. "ClusterCreateTime": {
  2498. "type": "timestamp"
  2499. },
  2500. "CopyTagsToSnapshot": {
  2501. "type": "boolean"
  2502. },
  2503. "EnabledCloudwatchLogsExports": {
  2504. "shape": "Sx"
  2505. },
  2506. "PendingModifiedValues": {
  2507. "type": "structure",
  2508. "members": {
  2509. "PendingCloudwatchLogsExports": {
  2510. "shape": "S1d"
  2511. },
  2512. "DBClusterIdentifier": {},
  2513. "IAMDatabaseAuthenticationEnabled": {
  2514. "type": "boolean"
  2515. },
  2516. "EngineVersion": {},
  2517. "BackupRetentionPeriod": {
  2518. "type": "integer"
  2519. },
  2520. "StorageType": {},
  2521. "AllocatedStorage": {
  2522. "type": "integer"
  2523. },
  2524. "Iops": {
  2525. "type": "integer"
  2526. }
  2527. }
  2528. },
  2529. "DeletionProtection": {
  2530. "type": "boolean"
  2531. },
  2532. "CrossAccountClone": {
  2533. "type": "boolean"
  2534. },
  2535. "AutomaticRestartTime": {
  2536. "type": "timestamp"
  2537. },
  2538. "ServerlessV2ScalingConfiguration": {
  2539. "type": "structure",
  2540. "members": {
  2541. "MinCapacity": {
  2542. "type": "double"
  2543. },
  2544. "MaxCapacity": {
  2545. "type": "double"
  2546. }
  2547. }
  2548. },
  2549. "GlobalClusterIdentifier": {},
  2550. "IOOptimizedNextAllowedModificationTime": {
  2551. "type": "timestamp"
  2552. },
  2553. "StorageType": {}
  2554. },
  2555. "wrapper": true
  2556. },
  2557. "S18": {
  2558. "type": "list",
  2559. "member": {
  2560. "locationName": "VpcSecurityGroupMembership",
  2561. "type": "structure",
  2562. "members": {
  2563. "VpcSecurityGroupId": {},
  2564. "Status": {}
  2565. }
  2566. }
  2567. },
  2568. "S1d": {
  2569. "type": "structure",
  2570. "members": {
  2571. "LogTypesToEnable": {
  2572. "shape": "Sx"
  2573. },
  2574. "LogTypesToDisable": {
  2575. "shape": "Sx"
  2576. }
  2577. }
  2578. },
  2579. "S1g": {
  2580. "type": "list",
  2581. "member": {}
  2582. },
  2583. "S1n": {
  2584. "type": "list",
  2585. "member": {
  2586. "locationName": "DBSecurityGroupName"
  2587. }
  2588. },
  2589. "S1o": {
  2590. "type": "string",
  2591. "sensitive": true
  2592. },
  2593. "S1q": {
  2594. "type": "structure",
  2595. "members": {
  2596. "DBInstanceIdentifier": {},
  2597. "DBInstanceClass": {},
  2598. "Engine": {},
  2599. "DBInstanceStatus": {},
  2600. "MasterUsername": {},
  2601. "DBName": {},
  2602. "Endpoint": {
  2603. "type": "structure",
  2604. "members": {
  2605. "Address": {},
  2606. "Port": {
  2607. "type": "integer"
  2608. },
  2609. "HostedZoneId": {}
  2610. }
  2611. },
  2612. "AllocatedStorage": {
  2613. "type": "integer"
  2614. },
  2615. "InstanceCreateTime": {
  2616. "type": "timestamp"
  2617. },
  2618. "PreferredBackupWindow": {},
  2619. "BackupRetentionPeriod": {
  2620. "type": "integer"
  2621. },
  2622. "DBSecurityGroups": {
  2623. "type": "list",
  2624. "member": {
  2625. "locationName": "DBSecurityGroup",
  2626. "type": "structure",
  2627. "members": {
  2628. "DBSecurityGroupName": {},
  2629. "Status": {}
  2630. }
  2631. }
  2632. },
  2633. "VpcSecurityGroups": {
  2634. "shape": "S18"
  2635. },
  2636. "DBParameterGroups": {
  2637. "type": "list",
  2638. "member": {
  2639. "locationName": "DBParameterGroup",
  2640. "type": "structure",
  2641. "members": {
  2642. "DBParameterGroupName": {},
  2643. "ParameterApplyStatus": {}
  2644. }
  2645. }
  2646. },
  2647. "AvailabilityZone": {},
  2648. "DBSubnetGroup": {
  2649. "shape": "S1w"
  2650. },
  2651. "PreferredMaintenanceWindow": {},
  2652. "PendingModifiedValues": {
  2653. "type": "structure",
  2654. "members": {
  2655. "DBInstanceClass": {},
  2656. "AllocatedStorage": {
  2657. "type": "integer"
  2658. },
  2659. "MasterUserPassword": {},
  2660. "Port": {
  2661. "type": "integer"
  2662. },
  2663. "BackupRetentionPeriod": {
  2664. "type": "integer"
  2665. },
  2666. "MultiAZ": {
  2667. "type": "boolean"
  2668. },
  2669. "EngineVersion": {},
  2670. "LicenseModel": {},
  2671. "Iops": {
  2672. "type": "integer"
  2673. },
  2674. "DBInstanceIdentifier": {},
  2675. "StorageType": {},
  2676. "CACertificateIdentifier": {},
  2677. "DBSubnetGroupName": {},
  2678. "PendingCloudwatchLogsExports": {
  2679. "shape": "S1d"
  2680. }
  2681. }
  2682. },
  2683. "LatestRestorableTime": {
  2684. "type": "timestamp"
  2685. },
  2686. "MultiAZ": {
  2687. "type": "boolean"
  2688. },
  2689. "EngineVersion": {},
  2690. "AutoMinorVersionUpgrade": {
  2691. "type": "boolean"
  2692. },
  2693. "ReadReplicaSourceDBInstanceIdentifier": {},
  2694. "ReadReplicaDBInstanceIdentifiers": {
  2695. "type": "list",
  2696. "member": {
  2697. "locationName": "ReadReplicaDBInstanceIdentifier"
  2698. }
  2699. },
  2700. "ReadReplicaDBClusterIdentifiers": {
  2701. "type": "list",
  2702. "member": {
  2703. "locationName": "ReadReplicaDBClusterIdentifier"
  2704. }
  2705. },
  2706. "LicenseModel": {},
  2707. "Iops": {
  2708. "type": "integer"
  2709. },
  2710. "OptionGroupMemberships": {
  2711. "type": "list",
  2712. "member": {
  2713. "locationName": "OptionGroupMembership",
  2714. "type": "structure",
  2715. "members": {
  2716. "OptionGroupName": {},
  2717. "Status": {}
  2718. }
  2719. }
  2720. },
  2721. "CharacterSetName": {},
  2722. "SecondaryAvailabilityZone": {},
  2723. "PubliclyAccessible": {
  2724. "deprecated": true,
  2725. "type": "boolean"
  2726. },
  2727. "StatusInfos": {
  2728. "type": "list",
  2729. "member": {
  2730. "locationName": "DBInstanceStatusInfo",
  2731. "type": "structure",
  2732. "members": {
  2733. "StatusType": {},
  2734. "Normal": {
  2735. "type": "boolean"
  2736. },
  2737. "Status": {},
  2738. "Message": {}
  2739. }
  2740. }
  2741. },
  2742. "StorageType": {},
  2743. "TdeCredentialArn": {},
  2744. "DbInstancePort": {
  2745. "type": "integer"
  2746. },
  2747. "DBClusterIdentifier": {},
  2748. "StorageEncrypted": {
  2749. "type": "boolean"
  2750. },
  2751. "KmsKeyId": {},
  2752. "DbiResourceId": {},
  2753. "CACertificateIdentifier": {},
  2754. "DomainMemberships": {
  2755. "type": "list",
  2756. "member": {
  2757. "locationName": "DomainMembership",
  2758. "type": "structure",
  2759. "members": {
  2760. "Domain": {},
  2761. "Status": {},
  2762. "FQDN": {},
  2763. "IAMRoleName": {}
  2764. }
  2765. }
  2766. },
  2767. "CopyTagsToSnapshot": {
  2768. "type": "boolean"
  2769. },
  2770. "MonitoringInterval": {
  2771. "type": "integer"
  2772. },
  2773. "EnhancedMonitoringResourceArn": {},
  2774. "MonitoringRoleArn": {},
  2775. "PromotionTier": {
  2776. "type": "integer"
  2777. },
  2778. "DBInstanceArn": {},
  2779. "Timezone": {},
  2780. "IAMDatabaseAuthenticationEnabled": {
  2781. "type": "boolean"
  2782. },
  2783. "PerformanceInsightsEnabled": {
  2784. "type": "boolean"
  2785. },
  2786. "PerformanceInsightsKMSKeyId": {},
  2787. "EnabledCloudwatchLogsExports": {
  2788. "shape": "Sx"
  2789. },
  2790. "DeletionProtection": {
  2791. "type": "boolean"
  2792. }
  2793. },
  2794. "wrapper": true
  2795. },
  2796. "S1w": {
  2797. "type": "structure",
  2798. "members": {
  2799. "DBSubnetGroupName": {},
  2800. "DBSubnetGroupDescription": {},
  2801. "VpcId": {},
  2802. "SubnetGroupStatus": {},
  2803. "Subnets": {
  2804. "type": "list",
  2805. "member": {
  2806. "locationName": "Subnet",
  2807. "type": "structure",
  2808. "members": {
  2809. "SubnetIdentifier": {},
  2810. "SubnetAvailabilityZone": {
  2811. "shape": "S1z"
  2812. },
  2813. "SubnetStatus": {}
  2814. }
  2815. }
  2816. },
  2817. "DBSubnetGroupArn": {}
  2818. },
  2819. "wrapper": true
  2820. },
  2821. "S1z": {
  2822. "type": "structure",
  2823. "members": {
  2824. "Name": {}
  2825. },
  2826. "wrapper": true
  2827. },
  2828. "S2c": {
  2829. "type": "list",
  2830. "member": {
  2831. "locationName": "SubnetIdentifier"
  2832. }
  2833. },
  2834. "S2i": {
  2835. "type": "structure",
  2836. "members": {
  2837. "GlobalClusterIdentifier": {},
  2838. "GlobalClusterResourceId": {},
  2839. "GlobalClusterArn": {},
  2840. "Status": {},
  2841. "Engine": {},
  2842. "EngineVersion": {},
  2843. "StorageEncrypted": {
  2844. "type": "boolean"
  2845. },
  2846. "DeletionProtection": {
  2847. "type": "boolean"
  2848. },
  2849. "GlobalClusterMembers": {
  2850. "type": "list",
  2851. "member": {
  2852. "locationName": "GlobalClusterMember",
  2853. "type": "structure",
  2854. "members": {
  2855. "DBClusterArn": {},
  2856. "Readers": {
  2857. "type": "list",
  2858. "member": {}
  2859. },
  2860. "IsWriter": {
  2861. "type": "boolean"
  2862. }
  2863. },
  2864. "wrapper": true
  2865. }
  2866. }
  2867. },
  2868. "wrapper": true
  2869. },
  2870. "S32": {
  2871. "type": "list",
  2872. "member": {
  2873. "locationName": "Filter",
  2874. "type": "structure",
  2875. "required": [
  2876. "Name",
  2877. "Values"
  2878. ],
  2879. "members": {
  2880. "Name": {},
  2881. "Values": {
  2882. "type": "list",
  2883. "member": {
  2884. "locationName": "Value"
  2885. }
  2886. }
  2887. }
  2888. }
  2889. },
  2890. "S3d": {
  2891. "type": "list",
  2892. "member": {
  2893. "locationName": "Parameter",
  2894. "type": "structure",
  2895. "members": {
  2896. "ParameterName": {},
  2897. "ParameterValue": {},
  2898. "Description": {},
  2899. "Source": {},
  2900. "ApplyType": {},
  2901. "DataType": {},
  2902. "AllowedValues": {},
  2903. "IsModifiable": {
  2904. "type": "boolean"
  2905. },
  2906. "MinimumEngineVersion": {},
  2907. "ApplyMethod": {}
  2908. }
  2909. }
  2910. },
  2911. "S3i": {
  2912. "type": "structure",
  2913. "members": {
  2914. "DBClusterSnapshotIdentifier": {},
  2915. "DBClusterSnapshotAttributes": {
  2916. "type": "list",
  2917. "member": {
  2918. "locationName": "DBClusterSnapshotAttribute",
  2919. "type": "structure",
  2920. "members": {
  2921. "AttributeName": {},
  2922. "AttributeValues": {
  2923. "shape": "S3l"
  2924. }
  2925. }
  2926. }
  2927. }
  2928. },
  2929. "wrapper": true
  2930. },
  2931. "S3l": {
  2932. "type": "list",
  2933. "member": {
  2934. "locationName": "AttributeValue"
  2935. }
  2936. },
  2937. "S3w": {
  2938. "type": "structure",
  2939. "members": {
  2940. "CharacterSetName": {},
  2941. "CharacterSetDescription": {}
  2942. }
  2943. },
  2944. "S4f": {
  2945. "type": "structure",
  2946. "members": {
  2947. "DBParameterGroupFamily": {},
  2948. "Marker": {},
  2949. "Parameters": {
  2950. "shape": "S3d"
  2951. }
  2952. },
  2953. "wrapper": true
  2954. },
  2955. "S5a": {
  2956. "type": "list",
  2957. "member": {
  2958. "locationName": "Range",
  2959. "type": "structure",
  2960. "members": {
  2961. "From": {
  2962. "type": "integer"
  2963. },
  2964. "To": {
  2965. "type": "integer"
  2966. },
  2967. "Step": {
  2968. "type": "integer"
  2969. }
  2970. }
  2971. }
  2972. },
  2973. "S5m": {
  2974. "type": "structure",
  2975. "members": {
  2976. "EnableLogTypes": {
  2977. "shape": "Sx"
  2978. },
  2979. "DisableLogTypes": {
  2980. "shape": "Sx"
  2981. }
  2982. }
  2983. },
  2984. "S5r": {
  2985. "type": "structure",
  2986. "members": {
  2987. "DBClusterParameterGroupName": {}
  2988. }
  2989. },
  2990. "S5x": {
  2991. "type": "structure",
  2992. "members": {
  2993. "DBParameterGroupName": {}
  2994. }
  2995. }
  2996. }
  2997. }