opensearch-2021-01-01.min.json 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2021-01-01",
  5. "endpointPrefix": "es",
  6. "protocol": "rest-json",
  7. "serviceFullName": "Amazon OpenSearch Service",
  8. "serviceId": "OpenSearch",
  9. "signatureVersion": "v4",
  10. "uid": "opensearch-2021-01-01"
  11. },
  12. "operations": {
  13. "AcceptInboundConnection": {
  14. "http": {
  15. "method": "PUT",
  16. "requestUri": "/2021-01-01/opensearch/cc/inboundConnection/{ConnectionId}/accept"
  17. },
  18. "input": {
  19. "type": "structure",
  20. "required": [
  21. "ConnectionId"
  22. ],
  23. "members": {
  24. "ConnectionId": {
  25. "location": "uri",
  26. "locationName": "ConnectionId"
  27. }
  28. }
  29. },
  30. "output": {
  31. "type": "structure",
  32. "members": {
  33. "Connection": {
  34. "shape": "S4"
  35. }
  36. }
  37. }
  38. },
  39. "AddDataSource": {
  40. "http": {
  41. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/dataSource"
  42. },
  43. "input": {
  44. "type": "structure",
  45. "required": [
  46. "DomainName",
  47. "Name",
  48. "DataSourceType"
  49. ],
  50. "members": {
  51. "DomainName": {
  52. "location": "uri",
  53. "locationName": "DomainName"
  54. },
  55. "Name": {},
  56. "DataSourceType": {
  57. "shape": "Sg"
  58. },
  59. "Description": {}
  60. }
  61. },
  62. "output": {
  63. "type": "structure",
  64. "members": {
  65. "Message": {}
  66. }
  67. }
  68. },
  69. "AddTags": {
  70. "http": {
  71. "requestUri": "/2021-01-01/tags"
  72. },
  73. "input": {
  74. "type": "structure",
  75. "required": [
  76. "ARN",
  77. "TagList"
  78. ],
  79. "members": {
  80. "ARN": {},
  81. "TagList": {
  82. "shape": "So"
  83. }
  84. }
  85. }
  86. },
  87. "AssociatePackage": {
  88. "http": {
  89. "requestUri": "/2021-01-01/packages/associate/{PackageID}/{DomainName}"
  90. },
  91. "input": {
  92. "type": "structure",
  93. "required": [
  94. "PackageID",
  95. "DomainName"
  96. ],
  97. "members": {
  98. "PackageID": {
  99. "location": "uri",
  100. "locationName": "PackageID"
  101. },
  102. "DomainName": {
  103. "location": "uri",
  104. "locationName": "DomainName"
  105. }
  106. }
  107. },
  108. "output": {
  109. "type": "structure",
  110. "members": {
  111. "DomainPackageDetails": {
  112. "shape": "Sv"
  113. }
  114. }
  115. }
  116. },
  117. "AuthorizeVpcEndpointAccess": {
  118. "http": {
  119. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/authorizeVpcEndpointAccess"
  120. },
  121. "input": {
  122. "type": "structure",
  123. "required": [
  124. "DomainName",
  125. "Account"
  126. ],
  127. "members": {
  128. "DomainName": {
  129. "location": "uri",
  130. "locationName": "DomainName"
  131. },
  132. "Account": {}
  133. }
  134. },
  135. "output": {
  136. "type": "structure",
  137. "required": [
  138. "AuthorizedPrincipal"
  139. ],
  140. "members": {
  141. "AuthorizedPrincipal": {
  142. "shape": "S18"
  143. }
  144. }
  145. }
  146. },
  147. "CancelDomainConfigChange": {
  148. "http": {
  149. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/config/cancel"
  150. },
  151. "input": {
  152. "type": "structure",
  153. "required": [
  154. "DomainName"
  155. ],
  156. "members": {
  157. "DomainName": {
  158. "location": "uri",
  159. "locationName": "DomainName"
  160. },
  161. "DryRun": {
  162. "type": "boolean"
  163. }
  164. }
  165. },
  166. "output": {
  167. "type": "structure",
  168. "members": {
  169. "CancelledChangeIds": {
  170. "type": "list",
  171. "member": {}
  172. },
  173. "CancelledChangeProperties": {
  174. "type": "list",
  175. "member": {
  176. "type": "structure",
  177. "members": {
  178. "PropertyName": {},
  179. "CancelledValue": {},
  180. "ActiveValue": {}
  181. }
  182. }
  183. },
  184. "DryRun": {
  185. "type": "boolean"
  186. }
  187. }
  188. }
  189. },
  190. "CancelServiceSoftwareUpdate": {
  191. "http": {
  192. "requestUri": "/2021-01-01/opensearch/serviceSoftwareUpdate/cancel"
  193. },
  194. "input": {
  195. "type": "structure",
  196. "required": [
  197. "DomainName"
  198. ],
  199. "members": {
  200. "DomainName": {}
  201. }
  202. },
  203. "output": {
  204. "type": "structure",
  205. "members": {
  206. "ServiceSoftwareOptions": {
  207. "shape": "S1j"
  208. }
  209. }
  210. }
  211. },
  212. "CreateDomain": {
  213. "http": {
  214. "requestUri": "/2021-01-01/opensearch/domain"
  215. },
  216. "input": {
  217. "type": "structure",
  218. "required": [
  219. "DomainName"
  220. ],
  221. "members": {
  222. "DomainName": {},
  223. "EngineVersion": {},
  224. "ClusterConfig": {
  225. "shape": "S1p"
  226. },
  227. "EBSOptions": {
  228. "shape": "S1v"
  229. },
  230. "AccessPolicies": {},
  231. "IPAddressType": {},
  232. "SnapshotOptions": {
  233. "shape": "S1z"
  234. },
  235. "VPCOptions": {
  236. "shape": "S20"
  237. },
  238. "CognitoOptions": {
  239. "shape": "S22"
  240. },
  241. "EncryptionAtRestOptions": {
  242. "shape": "S25"
  243. },
  244. "NodeToNodeEncryptionOptions": {
  245. "shape": "S27"
  246. },
  247. "AdvancedOptions": {
  248. "shape": "S28"
  249. },
  250. "LogPublishingOptions": {
  251. "shape": "S29"
  252. },
  253. "DomainEndpointOptions": {
  254. "shape": "S2d"
  255. },
  256. "AdvancedSecurityOptions": {
  257. "shape": "S2g"
  258. },
  259. "TagList": {
  260. "shape": "So"
  261. },
  262. "AutoTuneOptions": {
  263. "type": "structure",
  264. "members": {
  265. "DesiredState": {},
  266. "MaintenanceSchedules": {
  267. "shape": "S2r"
  268. },
  269. "UseOffPeakWindow": {
  270. "type": "boolean"
  271. }
  272. }
  273. },
  274. "OffPeakWindowOptions": {
  275. "shape": "S2x"
  276. },
  277. "SoftwareUpdateOptions": {
  278. "shape": "S32"
  279. }
  280. }
  281. },
  282. "output": {
  283. "type": "structure",
  284. "members": {
  285. "DomainStatus": {
  286. "shape": "S34"
  287. }
  288. }
  289. }
  290. },
  291. "CreateOutboundConnection": {
  292. "http": {
  293. "requestUri": "/2021-01-01/opensearch/cc/outboundConnection"
  294. },
  295. "input": {
  296. "type": "structure",
  297. "required": [
  298. "LocalDomainInfo",
  299. "RemoteDomainInfo",
  300. "ConnectionAlias"
  301. ],
  302. "members": {
  303. "LocalDomainInfo": {
  304. "shape": "S5"
  305. },
  306. "RemoteDomainInfo": {
  307. "shape": "S5"
  308. },
  309. "ConnectionAlias": {},
  310. "ConnectionMode": {},
  311. "ConnectionProperties": {
  312. "shape": "S3q"
  313. }
  314. }
  315. },
  316. "output": {
  317. "type": "structure",
  318. "members": {
  319. "LocalDomainInfo": {
  320. "shape": "S5"
  321. },
  322. "RemoteDomainInfo": {
  323. "shape": "S5"
  324. },
  325. "ConnectionAlias": {},
  326. "ConnectionStatus": {
  327. "shape": "S3v"
  328. },
  329. "ConnectionId": {},
  330. "ConnectionMode": {},
  331. "ConnectionProperties": {
  332. "shape": "S3q"
  333. }
  334. }
  335. }
  336. },
  337. "CreatePackage": {
  338. "http": {
  339. "requestUri": "/2021-01-01/packages"
  340. },
  341. "input": {
  342. "type": "structure",
  343. "required": [
  344. "PackageName",
  345. "PackageType",
  346. "PackageSource"
  347. ],
  348. "members": {
  349. "PackageName": {},
  350. "PackageType": {},
  351. "PackageDescription": {},
  352. "PackageSource": {
  353. "shape": "S3z"
  354. }
  355. }
  356. },
  357. "output": {
  358. "type": "structure",
  359. "members": {
  360. "PackageDetails": {
  361. "shape": "S43"
  362. }
  363. }
  364. }
  365. },
  366. "CreateVpcEndpoint": {
  367. "http": {
  368. "requestUri": "/2021-01-01/opensearch/vpcEndpoints"
  369. },
  370. "input": {
  371. "type": "structure",
  372. "required": [
  373. "DomainArn",
  374. "VpcOptions"
  375. ],
  376. "members": {
  377. "DomainArn": {},
  378. "VpcOptions": {
  379. "shape": "S20"
  380. },
  381. "ClientToken": {}
  382. }
  383. },
  384. "output": {
  385. "type": "structure",
  386. "required": [
  387. "VpcEndpoint"
  388. ],
  389. "members": {
  390. "VpcEndpoint": {
  391. "shape": "S4h"
  392. }
  393. }
  394. }
  395. },
  396. "DeleteDataSource": {
  397. "http": {
  398. "method": "DELETE",
  399. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/dataSource/{DataSourceName}"
  400. },
  401. "input": {
  402. "type": "structure",
  403. "required": [
  404. "DomainName",
  405. "Name"
  406. ],
  407. "members": {
  408. "DomainName": {
  409. "location": "uri",
  410. "locationName": "DomainName"
  411. },
  412. "Name": {
  413. "location": "uri",
  414. "locationName": "DataSourceName"
  415. }
  416. }
  417. },
  418. "output": {
  419. "type": "structure",
  420. "members": {
  421. "Message": {}
  422. }
  423. }
  424. },
  425. "DeleteDomain": {
  426. "http": {
  427. "method": "DELETE",
  428. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}"
  429. },
  430. "input": {
  431. "type": "structure",
  432. "required": [
  433. "DomainName"
  434. ],
  435. "members": {
  436. "DomainName": {
  437. "location": "uri",
  438. "locationName": "DomainName"
  439. }
  440. }
  441. },
  442. "output": {
  443. "type": "structure",
  444. "members": {
  445. "DomainStatus": {
  446. "shape": "S34"
  447. }
  448. }
  449. }
  450. },
  451. "DeleteInboundConnection": {
  452. "http": {
  453. "method": "DELETE",
  454. "requestUri": "/2021-01-01/opensearch/cc/inboundConnection/{ConnectionId}"
  455. },
  456. "input": {
  457. "type": "structure",
  458. "required": [
  459. "ConnectionId"
  460. ],
  461. "members": {
  462. "ConnectionId": {
  463. "location": "uri",
  464. "locationName": "ConnectionId"
  465. }
  466. }
  467. },
  468. "output": {
  469. "type": "structure",
  470. "members": {
  471. "Connection": {
  472. "shape": "S4"
  473. }
  474. }
  475. }
  476. },
  477. "DeleteOutboundConnection": {
  478. "http": {
  479. "method": "DELETE",
  480. "requestUri": "/2021-01-01/opensearch/cc/outboundConnection/{ConnectionId}"
  481. },
  482. "input": {
  483. "type": "structure",
  484. "required": [
  485. "ConnectionId"
  486. ],
  487. "members": {
  488. "ConnectionId": {
  489. "location": "uri",
  490. "locationName": "ConnectionId"
  491. }
  492. }
  493. },
  494. "output": {
  495. "type": "structure",
  496. "members": {
  497. "Connection": {
  498. "shape": "S4s"
  499. }
  500. }
  501. }
  502. },
  503. "DeletePackage": {
  504. "http": {
  505. "method": "DELETE",
  506. "requestUri": "/2021-01-01/packages/{PackageID}"
  507. },
  508. "input": {
  509. "type": "structure",
  510. "required": [
  511. "PackageID"
  512. ],
  513. "members": {
  514. "PackageID": {
  515. "location": "uri",
  516. "locationName": "PackageID"
  517. }
  518. }
  519. },
  520. "output": {
  521. "type": "structure",
  522. "members": {
  523. "PackageDetails": {
  524. "shape": "S43"
  525. }
  526. }
  527. }
  528. },
  529. "DeleteVpcEndpoint": {
  530. "http": {
  531. "method": "DELETE",
  532. "requestUri": "/2021-01-01/opensearch/vpcEndpoints/{VpcEndpointId}"
  533. },
  534. "input": {
  535. "type": "structure",
  536. "required": [
  537. "VpcEndpointId"
  538. ],
  539. "members": {
  540. "VpcEndpointId": {
  541. "location": "uri",
  542. "locationName": "VpcEndpointId"
  543. }
  544. }
  545. },
  546. "output": {
  547. "type": "structure",
  548. "required": [
  549. "VpcEndpointSummary"
  550. ],
  551. "members": {
  552. "VpcEndpointSummary": {
  553. "shape": "S4x"
  554. }
  555. }
  556. }
  557. },
  558. "DescribeDomain": {
  559. "http": {
  560. "method": "GET",
  561. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}"
  562. },
  563. "input": {
  564. "type": "structure",
  565. "required": [
  566. "DomainName"
  567. ],
  568. "members": {
  569. "DomainName": {
  570. "location": "uri",
  571. "locationName": "DomainName"
  572. }
  573. }
  574. },
  575. "output": {
  576. "type": "structure",
  577. "required": [
  578. "DomainStatus"
  579. ],
  580. "members": {
  581. "DomainStatus": {
  582. "shape": "S34"
  583. }
  584. }
  585. }
  586. },
  587. "DescribeDomainAutoTunes": {
  588. "http": {
  589. "method": "GET",
  590. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/autoTunes"
  591. },
  592. "input": {
  593. "type": "structure",
  594. "required": [
  595. "DomainName"
  596. ],
  597. "members": {
  598. "DomainName": {
  599. "location": "uri",
  600. "locationName": "DomainName"
  601. },
  602. "MaxResults": {
  603. "type": "integer"
  604. },
  605. "NextToken": {}
  606. }
  607. },
  608. "output": {
  609. "type": "structure",
  610. "members": {
  611. "AutoTunes": {
  612. "type": "list",
  613. "member": {
  614. "type": "structure",
  615. "members": {
  616. "AutoTuneType": {},
  617. "AutoTuneDetails": {
  618. "type": "structure",
  619. "members": {
  620. "ScheduledAutoTuneDetails": {
  621. "type": "structure",
  622. "members": {
  623. "Date": {
  624. "type": "timestamp"
  625. },
  626. "ActionType": {},
  627. "Action": {},
  628. "Severity": {}
  629. }
  630. }
  631. }
  632. }
  633. }
  634. }
  635. },
  636. "NextToken": {}
  637. }
  638. }
  639. },
  640. "DescribeDomainChangeProgress": {
  641. "http": {
  642. "method": "GET",
  643. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/progress"
  644. },
  645. "input": {
  646. "type": "structure",
  647. "required": [
  648. "DomainName"
  649. ],
  650. "members": {
  651. "DomainName": {
  652. "location": "uri",
  653. "locationName": "DomainName"
  654. },
  655. "ChangeId": {
  656. "location": "querystring",
  657. "locationName": "changeid"
  658. }
  659. }
  660. },
  661. "output": {
  662. "type": "structure",
  663. "members": {
  664. "ChangeProgressStatus": {
  665. "type": "structure",
  666. "members": {
  667. "ChangeId": {},
  668. "StartTime": {
  669. "type": "timestamp"
  670. },
  671. "Status": {},
  672. "PendingProperties": {
  673. "shape": "S21"
  674. },
  675. "CompletedProperties": {
  676. "shape": "S21"
  677. },
  678. "TotalNumberOfStages": {
  679. "type": "integer"
  680. },
  681. "ChangeProgressStages": {
  682. "type": "list",
  683. "member": {
  684. "type": "structure",
  685. "members": {
  686. "Name": {},
  687. "Status": {},
  688. "Description": {},
  689. "LastUpdated": {
  690. "type": "timestamp"
  691. }
  692. }
  693. }
  694. },
  695. "LastUpdatedTime": {
  696. "type": "timestamp"
  697. },
  698. "ConfigChangeStatus": {},
  699. "InitiatedBy": {}
  700. }
  701. }
  702. }
  703. }
  704. },
  705. "DescribeDomainConfig": {
  706. "http": {
  707. "method": "GET",
  708. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/config"
  709. },
  710. "input": {
  711. "type": "structure",
  712. "required": [
  713. "DomainName"
  714. ],
  715. "members": {
  716. "DomainName": {
  717. "location": "uri",
  718. "locationName": "DomainName"
  719. }
  720. }
  721. },
  722. "output": {
  723. "type": "structure",
  724. "required": [
  725. "DomainConfig"
  726. ],
  727. "members": {
  728. "DomainConfig": {
  729. "shape": "S5p"
  730. }
  731. }
  732. }
  733. },
  734. "DescribeDomainHealth": {
  735. "http": {
  736. "method": "GET",
  737. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/health"
  738. },
  739. "input": {
  740. "type": "structure",
  741. "required": [
  742. "DomainName"
  743. ],
  744. "members": {
  745. "DomainName": {
  746. "location": "uri",
  747. "locationName": "DomainName"
  748. }
  749. }
  750. },
  751. "output": {
  752. "type": "structure",
  753. "members": {
  754. "DomainState": {},
  755. "AvailabilityZoneCount": {},
  756. "ActiveAvailabilityZoneCount": {},
  757. "StandByAvailabilityZoneCount": {},
  758. "DataNodeCount": {},
  759. "DedicatedMaster": {
  760. "type": "boolean"
  761. },
  762. "MasterEligibleNodeCount": {},
  763. "WarmNodeCount": {},
  764. "MasterNode": {},
  765. "ClusterHealth": {},
  766. "TotalShards": {},
  767. "TotalUnAssignedShards": {},
  768. "EnvironmentInformation": {
  769. "type": "list",
  770. "member": {
  771. "type": "structure",
  772. "members": {
  773. "AvailabilityZoneInformation": {
  774. "type": "list",
  775. "member": {
  776. "type": "structure",
  777. "members": {
  778. "AvailabilityZoneName": {},
  779. "ZoneStatus": {},
  780. "ConfiguredDataNodeCount": {},
  781. "AvailableDataNodeCount": {},
  782. "TotalShards": {},
  783. "TotalUnAssignedShards": {}
  784. }
  785. }
  786. }
  787. }
  788. }
  789. }
  790. }
  791. }
  792. },
  793. "DescribeDomainNodes": {
  794. "http": {
  795. "method": "GET",
  796. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/nodes"
  797. },
  798. "input": {
  799. "type": "structure",
  800. "required": [
  801. "DomainName"
  802. ],
  803. "members": {
  804. "DomainName": {
  805. "location": "uri",
  806. "locationName": "DomainName"
  807. }
  808. }
  809. },
  810. "output": {
  811. "type": "structure",
  812. "members": {
  813. "DomainNodesStatusList": {
  814. "type": "list",
  815. "member": {
  816. "type": "structure",
  817. "members": {
  818. "NodeId": {},
  819. "NodeType": {},
  820. "AvailabilityZone": {},
  821. "InstanceType": {},
  822. "NodeStatus": {},
  823. "StorageType": {},
  824. "StorageVolumeType": {},
  825. "StorageSize": {}
  826. }
  827. }
  828. }
  829. }
  830. }
  831. },
  832. "DescribeDomains": {
  833. "http": {
  834. "requestUri": "/2021-01-01/opensearch/domain-info"
  835. },
  836. "input": {
  837. "type": "structure",
  838. "required": [
  839. "DomainNames"
  840. ],
  841. "members": {
  842. "DomainNames": {
  843. "type": "list",
  844. "member": {}
  845. }
  846. }
  847. },
  848. "output": {
  849. "type": "structure",
  850. "required": [
  851. "DomainStatusList"
  852. ],
  853. "members": {
  854. "DomainStatusList": {
  855. "type": "list",
  856. "member": {
  857. "shape": "S34"
  858. }
  859. }
  860. }
  861. }
  862. },
  863. "DescribeDryRunProgress": {
  864. "http": {
  865. "method": "GET",
  866. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/dryRun"
  867. },
  868. "input": {
  869. "type": "structure",
  870. "required": [
  871. "DomainName"
  872. ],
  873. "members": {
  874. "DomainName": {
  875. "location": "uri",
  876. "locationName": "DomainName"
  877. },
  878. "DryRunId": {
  879. "location": "querystring",
  880. "locationName": "dryRunId"
  881. },
  882. "LoadDryRunConfig": {
  883. "location": "querystring",
  884. "locationName": "loadDryRunConfig",
  885. "type": "boolean"
  886. }
  887. }
  888. },
  889. "output": {
  890. "type": "structure",
  891. "members": {
  892. "DryRunProgressStatus": {
  893. "shape": "S76"
  894. },
  895. "DryRunConfig": {
  896. "shape": "S34"
  897. },
  898. "DryRunResults": {
  899. "shape": "S79"
  900. }
  901. }
  902. }
  903. },
  904. "DescribeInboundConnections": {
  905. "http": {
  906. "requestUri": "/2021-01-01/opensearch/cc/inboundConnection/search"
  907. },
  908. "input": {
  909. "type": "structure",
  910. "members": {
  911. "Filters": {
  912. "shape": "S7c"
  913. },
  914. "MaxResults": {
  915. "type": "integer"
  916. },
  917. "NextToken": {}
  918. }
  919. },
  920. "output": {
  921. "type": "structure",
  922. "members": {
  923. "Connections": {
  924. "type": "list",
  925. "member": {
  926. "shape": "S4"
  927. }
  928. },
  929. "NextToken": {}
  930. }
  931. }
  932. },
  933. "DescribeInstanceTypeLimits": {
  934. "http": {
  935. "method": "GET",
  936. "requestUri": "/2021-01-01/opensearch/instanceTypeLimits/{EngineVersion}/{InstanceType}"
  937. },
  938. "input": {
  939. "type": "structure",
  940. "required": [
  941. "InstanceType",
  942. "EngineVersion"
  943. ],
  944. "members": {
  945. "DomainName": {
  946. "location": "querystring",
  947. "locationName": "domainName"
  948. },
  949. "InstanceType": {
  950. "location": "uri",
  951. "locationName": "InstanceType"
  952. },
  953. "EngineVersion": {
  954. "location": "uri",
  955. "locationName": "EngineVersion"
  956. }
  957. }
  958. },
  959. "output": {
  960. "type": "structure",
  961. "members": {
  962. "LimitsByRole": {
  963. "type": "map",
  964. "key": {},
  965. "value": {
  966. "type": "structure",
  967. "members": {
  968. "StorageTypes": {
  969. "type": "list",
  970. "member": {
  971. "type": "structure",
  972. "members": {
  973. "StorageTypeName": {},
  974. "StorageSubTypeName": {},
  975. "StorageTypeLimits": {
  976. "type": "list",
  977. "member": {
  978. "type": "structure",
  979. "members": {
  980. "LimitName": {},
  981. "LimitValues": {
  982. "shape": "S7t"
  983. }
  984. }
  985. }
  986. }
  987. }
  988. }
  989. },
  990. "InstanceLimits": {
  991. "type": "structure",
  992. "members": {
  993. "InstanceCountLimits": {
  994. "type": "structure",
  995. "members": {
  996. "MinimumInstanceCount": {
  997. "type": "integer"
  998. },
  999. "MaximumInstanceCount": {
  1000. "type": "integer"
  1001. }
  1002. }
  1003. }
  1004. }
  1005. },
  1006. "AdditionalLimits": {
  1007. "type": "list",
  1008. "member": {
  1009. "type": "structure",
  1010. "members": {
  1011. "LimitName": {},
  1012. "LimitValues": {
  1013. "shape": "S7t"
  1014. }
  1015. }
  1016. }
  1017. }
  1018. }
  1019. }
  1020. }
  1021. }
  1022. }
  1023. },
  1024. "DescribeOutboundConnections": {
  1025. "http": {
  1026. "requestUri": "/2021-01-01/opensearch/cc/outboundConnection/search"
  1027. },
  1028. "input": {
  1029. "type": "structure",
  1030. "members": {
  1031. "Filters": {
  1032. "shape": "S7c"
  1033. },
  1034. "MaxResults": {
  1035. "type": "integer"
  1036. },
  1037. "NextToken": {}
  1038. }
  1039. },
  1040. "output": {
  1041. "type": "structure",
  1042. "members": {
  1043. "Connections": {
  1044. "type": "list",
  1045. "member": {
  1046. "shape": "S4s"
  1047. }
  1048. },
  1049. "NextToken": {}
  1050. }
  1051. }
  1052. },
  1053. "DescribePackages": {
  1054. "http": {
  1055. "requestUri": "/2021-01-01/packages/describe"
  1056. },
  1057. "input": {
  1058. "type": "structure",
  1059. "members": {
  1060. "Filters": {
  1061. "type": "list",
  1062. "member": {
  1063. "type": "structure",
  1064. "members": {
  1065. "Name": {},
  1066. "Value": {
  1067. "type": "list",
  1068. "member": {}
  1069. }
  1070. }
  1071. }
  1072. },
  1073. "MaxResults": {
  1074. "type": "integer"
  1075. },
  1076. "NextToken": {}
  1077. }
  1078. },
  1079. "output": {
  1080. "type": "structure",
  1081. "members": {
  1082. "PackageDetailsList": {
  1083. "type": "list",
  1084. "member": {
  1085. "shape": "S43"
  1086. }
  1087. },
  1088. "NextToken": {}
  1089. }
  1090. }
  1091. },
  1092. "DescribeReservedInstanceOfferings": {
  1093. "http": {
  1094. "method": "GET",
  1095. "requestUri": "/2021-01-01/opensearch/reservedInstanceOfferings"
  1096. },
  1097. "input": {
  1098. "type": "structure",
  1099. "members": {
  1100. "ReservedInstanceOfferingId": {
  1101. "location": "querystring",
  1102. "locationName": "offeringId"
  1103. },
  1104. "MaxResults": {
  1105. "location": "querystring",
  1106. "locationName": "maxResults",
  1107. "type": "integer"
  1108. },
  1109. "NextToken": {
  1110. "location": "querystring",
  1111. "locationName": "nextToken"
  1112. }
  1113. }
  1114. },
  1115. "output": {
  1116. "type": "structure",
  1117. "members": {
  1118. "NextToken": {},
  1119. "ReservedInstanceOfferings": {
  1120. "type": "list",
  1121. "member": {
  1122. "type": "structure",
  1123. "members": {
  1124. "ReservedInstanceOfferingId": {},
  1125. "InstanceType": {},
  1126. "Duration": {
  1127. "type": "integer"
  1128. },
  1129. "FixedPrice": {
  1130. "type": "double"
  1131. },
  1132. "UsagePrice": {
  1133. "type": "double"
  1134. },
  1135. "CurrencyCode": {},
  1136. "PaymentOption": {},
  1137. "RecurringCharges": {
  1138. "shape": "S8j"
  1139. }
  1140. }
  1141. }
  1142. }
  1143. }
  1144. }
  1145. },
  1146. "DescribeReservedInstances": {
  1147. "http": {
  1148. "method": "GET",
  1149. "requestUri": "/2021-01-01/opensearch/reservedInstances"
  1150. },
  1151. "input": {
  1152. "type": "structure",
  1153. "members": {
  1154. "ReservedInstanceId": {
  1155. "location": "querystring",
  1156. "locationName": "reservationId"
  1157. },
  1158. "MaxResults": {
  1159. "location": "querystring",
  1160. "locationName": "maxResults",
  1161. "type": "integer"
  1162. },
  1163. "NextToken": {
  1164. "location": "querystring",
  1165. "locationName": "nextToken"
  1166. }
  1167. }
  1168. },
  1169. "output": {
  1170. "type": "structure",
  1171. "members": {
  1172. "NextToken": {},
  1173. "ReservedInstances": {
  1174. "type": "list",
  1175. "member": {
  1176. "type": "structure",
  1177. "members": {
  1178. "ReservationName": {},
  1179. "ReservedInstanceId": {},
  1180. "BillingSubscriptionId": {
  1181. "type": "long"
  1182. },
  1183. "ReservedInstanceOfferingId": {},
  1184. "InstanceType": {},
  1185. "StartTime": {
  1186. "type": "timestamp"
  1187. },
  1188. "Duration": {
  1189. "type": "integer"
  1190. },
  1191. "FixedPrice": {
  1192. "type": "double"
  1193. },
  1194. "UsagePrice": {
  1195. "type": "double"
  1196. },
  1197. "CurrencyCode": {},
  1198. "InstanceCount": {
  1199. "type": "integer"
  1200. },
  1201. "State": {},
  1202. "PaymentOption": {},
  1203. "RecurringCharges": {
  1204. "shape": "S8j"
  1205. }
  1206. }
  1207. }
  1208. }
  1209. }
  1210. }
  1211. },
  1212. "DescribeVpcEndpoints": {
  1213. "http": {
  1214. "requestUri": "/2021-01-01/opensearch/vpcEndpoints/describe"
  1215. },
  1216. "input": {
  1217. "type": "structure",
  1218. "required": [
  1219. "VpcEndpointIds"
  1220. ],
  1221. "members": {
  1222. "VpcEndpointIds": {
  1223. "type": "list",
  1224. "member": {}
  1225. }
  1226. }
  1227. },
  1228. "output": {
  1229. "type": "structure",
  1230. "required": [
  1231. "VpcEndpoints",
  1232. "VpcEndpointErrors"
  1233. ],
  1234. "members": {
  1235. "VpcEndpoints": {
  1236. "type": "list",
  1237. "member": {
  1238. "shape": "S4h"
  1239. }
  1240. },
  1241. "VpcEndpointErrors": {
  1242. "type": "list",
  1243. "member": {
  1244. "type": "structure",
  1245. "members": {
  1246. "VpcEndpointId": {},
  1247. "ErrorCode": {},
  1248. "ErrorMessage": {}
  1249. }
  1250. }
  1251. }
  1252. }
  1253. }
  1254. },
  1255. "DissociatePackage": {
  1256. "http": {
  1257. "requestUri": "/2021-01-01/packages/dissociate/{PackageID}/{DomainName}"
  1258. },
  1259. "input": {
  1260. "type": "structure",
  1261. "required": [
  1262. "PackageID",
  1263. "DomainName"
  1264. ],
  1265. "members": {
  1266. "PackageID": {
  1267. "location": "uri",
  1268. "locationName": "PackageID"
  1269. },
  1270. "DomainName": {
  1271. "location": "uri",
  1272. "locationName": "DomainName"
  1273. }
  1274. }
  1275. },
  1276. "output": {
  1277. "type": "structure",
  1278. "members": {
  1279. "DomainPackageDetails": {
  1280. "shape": "Sv"
  1281. }
  1282. }
  1283. }
  1284. },
  1285. "GetCompatibleVersions": {
  1286. "http": {
  1287. "method": "GET",
  1288. "requestUri": "/2021-01-01/opensearch/compatibleVersions"
  1289. },
  1290. "input": {
  1291. "type": "structure",
  1292. "members": {
  1293. "DomainName": {
  1294. "location": "querystring",
  1295. "locationName": "domainName"
  1296. }
  1297. }
  1298. },
  1299. "output": {
  1300. "type": "structure",
  1301. "members": {
  1302. "CompatibleVersions": {
  1303. "type": "list",
  1304. "member": {
  1305. "type": "structure",
  1306. "members": {
  1307. "SourceVersion": {},
  1308. "TargetVersions": {
  1309. "shape": "S94"
  1310. }
  1311. }
  1312. }
  1313. }
  1314. }
  1315. }
  1316. },
  1317. "GetDataSource": {
  1318. "http": {
  1319. "method": "GET",
  1320. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/dataSource/{DataSourceName}"
  1321. },
  1322. "input": {
  1323. "type": "structure",
  1324. "required": [
  1325. "DomainName",
  1326. "Name"
  1327. ],
  1328. "members": {
  1329. "DomainName": {
  1330. "location": "uri",
  1331. "locationName": "DomainName"
  1332. },
  1333. "Name": {
  1334. "location": "uri",
  1335. "locationName": "DataSourceName"
  1336. }
  1337. }
  1338. },
  1339. "output": {
  1340. "type": "structure",
  1341. "members": {
  1342. "DataSourceType": {
  1343. "shape": "Sg"
  1344. },
  1345. "Name": {},
  1346. "Description": {}
  1347. }
  1348. }
  1349. },
  1350. "GetDomainMaintenanceStatus": {
  1351. "http": {
  1352. "method": "GET",
  1353. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/domainMaintenance"
  1354. },
  1355. "input": {
  1356. "type": "structure",
  1357. "required": [
  1358. "DomainName",
  1359. "MaintenanceId"
  1360. ],
  1361. "members": {
  1362. "DomainName": {
  1363. "location": "uri",
  1364. "locationName": "DomainName"
  1365. },
  1366. "MaintenanceId": {
  1367. "location": "querystring",
  1368. "locationName": "maintenanceId"
  1369. }
  1370. }
  1371. },
  1372. "output": {
  1373. "type": "structure",
  1374. "members": {
  1375. "Status": {},
  1376. "StatusMessage": {},
  1377. "NodeId": {},
  1378. "Action": {},
  1379. "CreatedAt": {
  1380. "type": "timestamp"
  1381. },
  1382. "UpdatedAt": {
  1383. "type": "timestamp"
  1384. }
  1385. }
  1386. }
  1387. },
  1388. "GetPackageVersionHistory": {
  1389. "http": {
  1390. "method": "GET",
  1391. "requestUri": "/2021-01-01/packages/{PackageID}/history"
  1392. },
  1393. "input": {
  1394. "type": "structure",
  1395. "required": [
  1396. "PackageID"
  1397. ],
  1398. "members": {
  1399. "PackageID": {
  1400. "location": "uri",
  1401. "locationName": "PackageID"
  1402. },
  1403. "MaxResults": {
  1404. "location": "querystring",
  1405. "locationName": "maxResults",
  1406. "type": "integer"
  1407. },
  1408. "NextToken": {
  1409. "location": "querystring",
  1410. "locationName": "nextToken"
  1411. }
  1412. }
  1413. },
  1414. "output": {
  1415. "type": "structure",
  1416. "members": {
  1417. "PackageID": {},
  1418. "PackageVersionHistoryList": {
  1419. "type": "list",
  1420. "member": {
  1421. "type": "structure",
  1422. "members": {
  1423. "PackageVersion": {},
  1424. "CommitMessage": {},
  1425. "CreatedAt": {
  1426. "type": "timestamp"
  1427. },
  1428. "PluginProperties": {
  1429. "shape": "S47"
  1430. }
  1431. }
  1432. }
  1433. },
  1434. "NextToken": {}
  1435. }
  1436. }
  1437. },
  1438. "GetUpgradeHistory": {
  1439. "http": {
  1440. "method": "GET",
  1441. "requestUri": "/2021-01-01/opensearch/upgradeDomain/{DomainName}/history"
  1442. },
  1443. "input": {
  1444. "type": "structure",
  1445. "required": [
  1446. "DomainName"
  1447. ],
  1448. "members": {
  1449. "DomainName": {
  1450. "location": "uri",
  1451. "locationName": "DomainName"
  1452. },
  1453. "MaxResults": {
  1454. "location": "querystring",
  1455. "locationName": "maxResults",
  1456. "type": "integer"
  1457. },
  1458. "NextToken": {
  1459. "location": "querystring",
  1460. "locationName": "nextToken"
  1461. }
  1462. }
  1463. },
  1464. "output": {
  1465. "type": "structure",
  1466. "members": {
  1467. "UpgradeHistories": {
  1468. "type": "list",
  1469. "member": {
  1470. "type": "structure",
  1471. "members": {
  1472. "UpgradeName": {},
  1473. "StartTimestamp": {
  1474. "type": "timestamp"
  1475. },
  1476. "UpgradeStatus": {},
  1477. "StepsList": {
  1478. "type": "list",
  1479. "member": {
  1480. "type": "structure",
  1481. "members": {
  1482. "UpgradeStep": {},
  1483. "UpgradeStepStatus": {},
  1484. "Issues": {
  1485. "type": "list",
  1486. "member": {}
  1487. },
  1488. "ProgressPercent": {
  1489. "type": "double"
  1490. }
  1491. }
  1492. }
  1493. }
  1494. }
  1495. }
  1496. },
  1497. "NextToken": {}
  1498. }
  1499. }
  1500. },
  1501. "GetUpgradeStatus": {
  1502. "http": {
  1503. "method": "GET",
  1504. "requestUri": "/2021-01-01/opensearch/upgradeDomain/{DomainName}/status"
  1505. },
  1506. "input": {
  1507. "type": "structure",
  1508. "required": [
  1509. "DomainName"
  1510. ],
  1511. "members": {
  1512. "DomainName": {
  1513. "location": "uri",
  1514. "locationName": "DomainName"
  1515. }
  1516. }
  1517. },
  1518. "output": {
  1519. "type": "structure",
  1520. "members": {
  1521. "UpgradeStep": {},
  1522. "StepStatus": {},
  1523. "UpgradeName": {}
  1524. }
  1525. }
  1526. },
  1527. "ListDataSources": {
  1528. "http": {
  1529. "method": "GET",
  1530. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/dataSource"
  1531. },
  1532. "input": {
  1533. "type": "structure",
  1534. "required": [
  1535. "DomainName"
  1536. ],
  1537. "members": {
  1538. "DomainName": {
  1539. "location": "uri",
  1540. "locationName": "DomainName"
  1541. }
  1542. }
  1543. },
  1544. "output": {
  1545. "type": "structure",
  1546. "members": {
  1547. "DataSources": {
  1548. "type": "list",
  1549. "member": {
  1550. "type": "structure",
  1551. "members": {
  1552. "DataSourceType": {
  1553. "shape": "Sg"
  1554. },
  1555. "Name": {},
  1556. "Description": {}
  1557. }
  1558. }
  1559. }
  1560. }
  1561. }
  1562. },
  1563. "ListDomainMaintenances": {
  1564. "http": {
  1565. "method": "GET",
  1566. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/domainMaintenances"
  1567. },
  1568. "input": {
  1569. "type": "structure",
  1570. "required": [
  1571. "DomainName"
  1572. ],
  1573. "members": {
  1574. "DomainName": {
  1575. "location": "uri",
  1576. "locationName": "DomainName"
  1577. },
  1578. "Action": {
  1579. "location": "querystring",
  1580. "locationName": "action"
  1581. },
  1582. "Status": {
  1583. "location": "querystring",
  1584. "locationName": "status"
  1585. },
  1586. "MaxResults": {
  1587. "location": "querystring",
  1588. "locationName": "maxResults",
  1589. "type": "integer"
  1590. },
  1591. "NextToken": {
  1592. "location": "querystring",
  1593. "locationName": "nextToken"
  1594. }
  1595. }
  1596. },
  1597. "output": {
  1598. "type": "structure",
  1599. "members": {
  1600. "DomainMaintenances": {
  1601. "type": "list",
  1602. "member": {
  1603. "type": "structure",
  1604. "members": {
  1605. "MaintenanceId": {},
  1606. "DomainName": {},
  1607. "Action": {},
  1608. "NodeId": {},
  1609. "Status": {},
  1610. "StatusMessage": {},
  1611. "CreatedAt": {
  1612. "type": "timestamp"
  1613. },
  1614. "UpdatedAt": {
  1615. "type": "timestamp"
  1616. }
  1617. }
  1618. }
  1619. },
  1620. "NextToken": {}
  1621. }
  1622. }
  1623. },
  1624. "ListDomainNames": {
  1625. "http": {
  1626. "method": "GET",
  1627. "requestUri": "/2021-01-01/domain"
  1628. },
  1629. "input": {
  1630. "type": "structure",
  1631. "members": {
  1632. "EngineType": {
  1633. "location": "querystring",
  1634. "locationName": "engineType"
  1635. }
  1636. }
  1637. },
  1638. "output": {
  1639. "type": "structure",
  1640. "members": {
  1641. "DomainNames": {
  1642. "type": "list",
  1643. "member": {
  1644. "type": "structure",
  1645. "members": {
  1646. "DomainName": {},
  1647. "EngineType": {}
  1648. }
  1649. }
  1650. }
  1651. }
  1652. }
  1653. },
  1654. "ListDomainsForPackage": {
  1655. "http": {
  1656. "method": "GET",
  1657. "requestUri": "/2021-01-01/packages/{PackageID}/domains"
  1658. },
  1659. "input": {
  1660. "type": "structure",
  1661. "required": [
  1662. "PackageID"
  1663. ],
  1664. "members": {
  1665. "PackageID": {
  1666. "location": "uri",
  1667. "locationName": "PackageID"
  1668. },
  1669. "MaxResults": {
  1670. "location": "querystring",
  1671. "locationName": "maxResults",
  1672. "type": "integer"
  1673. },
  1674. "NextToken": {
  1675. "location": "querystring",
  1676. "locationName": "nextToken"
  1677. }
  1678. }
  1679. },
  1680. "output": {
  1681. "type": "structure",
  1682. "members": {
  1683. "DomainPackageDetailsList": {
  1684. "shape": "Sab"
  1685. },
  1686. "NextToken": {}
  1687. }
  1688. }
  1689. },
  1690. "ListInstanceTypeDetails": {
  1691. "http": {
  1692. "method": "GET",
  1693. "requestUri": "/2021-01-01/opensearch/instanceTypeDetails/{EngineVersion}"
  1694. },
  1695. "input": {
  1696. "type": "structure",
  1697. "required": [
  1698. "EngineVersion"
  1699. ],
  1700. "members": {
  1701. "EngineVersion": {
  1702. "location": "uri",
  1703. "locationName": "EngineVersion"
  1704. },
  1705. "DomainName": {
  1706. "location": "querystring",
  1707. "locationName": "domainName"
  1708. },
  1709. "MaxResults": {
  1710. "location": "querystring",
  1711. "locationName": "maxResults",
  1712. "type": "integer"
  1713. },
  1714. "NextToken": {
  1715. "location": "querystring",
  1716. "locationName": "nextToken"
  1717. },
  1718. "RetrieveAZs": {
  1719. "location": "querystring",
  1720. "locationName": "retrieveAZs",
  1721. "type": "boolean"
  1722. },
  1723. "InstanceType": {
  1724. "location": "querystring",
  1725. "locationName": "instanceType"
  1726. }
  1727. }
  1728. },
  1729. "output": {
  1730. "type": "structure",
  1731. "members": {
  1732. "InstanceTypeDetails": {
  1733. "type": "list",
  1734. "member": {
  1735. "type": "structure",
  1736. "members": {
  1737. "InstanceType": {},
  1738. "EncryptionEnabled": {
  1739. "type": "boolean"
  1740. },
  1741. "CognitoEnabled": {
  1742. "type": "boolean"
  1743. },
  1744. "AppLogsEnabled": {
  1745. "type": "boolean"
  1746. },
  1747. "AdvancedSecurityEnabled": {
  1748. "type": "boolean"
  1749. },
  1750. "WarmEnabled": {
  1751. "type": "boolean"
  1752. },
  1753. "InstanceRole": {
  1754. "type": "list",
  1755. "member": {}
  1756. },
  1757. "AvailabilityZones": {
  1758. "type": "list",
  1759. "member": {}
  1760. }
  1761. }
  1762. }
  1763. },
  1764. "NextToken": {}
  1765. }
  1766. }
  1767. },
  1768. "ListPackagesForDomain": {
  1769. "http": {
  1770. "method": "GET",
  1771. "requestUri": "/2021-01-01/domain/{DomainName}/packages"
  1772. },
  1773. "input": {
  1774. "type": "structure",
  1775. "required": [
  1776. "DomainName"
  1777. ],
  1778. "members": {
  1779. "DomainName": {
  1780. "location": "uri",
  1781. "locationName": "DomainName"
  1782. },
  1783. "MaxResults": {
  1784. "location": "querystring",
  1785. "locationName": "maxResults",
  1786. "type": "integer"
  1787. },
  1788. "NextToken": {
  1789. "location": "querystring",
  1790. "locationName": "nextToken"
  1791. }
  1792. }
  1793. },
  1794. "output": {
  1795. "type": "structure",
  1796. "members": {
  1797. "DomainPackageDetailsList": {
  1798. "shape": "Sab"
  1799. },
  1800. "NextToken": {}
  1801. }
  1802. }
  1803. },
  1804. "ListScheduledActions": {
  1805. "http": {
  1806. "method": "GET",
  1807. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/scheduledActions"
  1808. },
  1809. "input": {
  1810. "type": "structure",
  1811. "required": [
  1812. "DomainName"
  1813. ],
  1814. "members": {
  1815. "DomainName": {
  1816. "location": "uri",
  1817. "locationName": "DomainName"
  1818. },
  1819. "MaxResults": {
  1820. "location": "querystring",
  1821. "locationName": "maxResults",
  1822. "type": "integer"
  1823. },
  1824. "NextToken": {
  1825. "location": "querystring",
  1826. "locationName": "nextToken"
  1827. }
  1828. }
  1829. },
  1830. "output": {
  1831. "type": "structure",
  1832. "members": {
  1833. "ScheduledActions": {
  1834. "type": "list",
  1835. "member": {
  1836. "shape": "Sao"
  1837. }
  1838. },
  1839. "NextToken": {}
  1840. }
  1841. }
  1842. },
  1843. "ListTags": {
  1844. "http": {
  1845. "method": "GET",
  1846. "requestUri": "/2021-01-01/tags/"
  1847. },
  1848. "input": {
  1849. "type": "structure",
  1850. "required": [
  1851. "ARN"
  1852. ],
  1853. "members": {
  1854. "ARN": {
  1855. "location": "querystring",
  1856. "locationName": "arn"
  1857. }
  1858. }
  1859. },
  1860. "output": {
  1861. "type": "structure",
  1862. "members": {
  1863. "TagList": {
  1864. "shape": "So"
  1865. }
  1866. }
  1867. }
  1868. },
  1869. "ListVersions": {
  1870. "http": {
  1871. "method": "GET",
  1872. "requestUri": "/2021-01-01/opensearch/versions"
  1873. },
  1874. "input": {
  1875. "type": "structure",
  1876. "members": {
  1877. "MaxResults": {
  1878. "location": "querystring",
  1879. "locationName": "maxResults",
  1880. "type": "integer"
  1881. },
  1882. "NextToken": {
  1883. "location": "querystring",
  1884. "locationName": "nextToken"
  1885. }
  1886. }
  1887. },
  1888. "output": {
  1889. "type": "structure",
  1890. "members": {
  1891. "Versions": {
  1892. "shape": "S94"
  1893. },
  1894. "NextToken": {}
  1895. }
  1896. }
  1897. },
  1898. "ListVpcEndpointAccess": {
  1899. "http": {
  1900. "method": "GET",
  1901. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/listVpcEndpointAccess"
  1902. },
  1903. "input": {
  1904. "type": "structure",
  1905. "required": [
  1906. "DomainName"
  1907. ],
  1908. "members": {
  1909. "DomainName": {
  1910. "location": "uri",
  1911. "locationName": "DomainName"
  1912. },
  1913. "NextToken": {
  1914. "location": "querystring",
  1915. "locationName": "nextToken"
  1916. }
  1917. }
  1918. },
  1919. "output": {
  1920. "type": "structure",
  1921. "required": [
  1922. "AuthorizedPrincipalList",
  1923. "NextToken"
  1924. ],
  1925. "members": {
  1926. "AuthorizedPrincipalList": {
  1927. "type": "list",
  1928. "member": {
  1929. "shape": "S18"
  1930. }
  1931. },
  1932. "NextToken": {}
  1933. }
  1934. }
  1935. },
  1936. "ListVpcEndpoints": {
  1937. "http": {
  1938. "method": "GET",
  1939. "requestUri": "/2021-01-01/opensearch/vpcEndpoints"
  1940. },
  1941. "input": {
  1942. "type": "structure",
  1943. "members": {
  1944. "NextToken": {
  1945. "location": "querystring",
  1946. "locationName": "nextToken"
  1947. }
  1948. }
  1949. },
  1950. "output": {
  1951. "type": "structure",
  1952. "required": [
  1953. "VpcEndpointSummaryList",
  1954. "NextToken"
  1955. ],
  1956. "members": {
  1957. "VpcEndpointSummaryList": {
  1958. "shape": "Sb2"
  1959. },
  1960. "NextToken": {}
  1961. }
  1962. }
  1963. },
  1964. "ListVpcEndpointsForDomain": {
  1965. "http": {
  1966. "method": "GET",
  1967. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/vpcEndpoints"
  1968. },
  1969. "input": {
  1970. "type": "structure",
  1971. "required": [
  1972. "DomainName"
  1973. ],
  1974. "members": {
  1975. "DomainName": {
  1976. "location": "uri",
  1977. "locationName": "DomainName"
  1978. },
  1979. "NextToken": {
  1980. "location": "querystring",
  1981. "locationName": "nextToken"
  1982. }
  1983. }
  1984. },
  1985. "output": {
  1986. "type": "structure",
  1987. "required": [
  1988. "VpcEndpointSummaryList",
  1989. "NextToken"
  1990. ],
  1991. "members": {
  1992. "VpcEndpointSummaryList": {
  1993. "shape": "Sb2"
  1994. },
  1995. "NextToken": {}
  1996. }
  1997. }
  1998. },
  1999. "PurchaseReservedInstanceOffering": {
  2000. "http": {
  2001. "requestUri": "/2021-01-01/opensearch/purchaseReservedInstanceOffering"
  2002. },
  2003. "input": {
  2004. "type": "structure",
  2005. "required": [
  2006. "ReservedInstanceOfferingId",
  2007. "ReservationName"
  2008. ],
  2009. "members": {
  2010. "ReservedInstanceOfferingId": {},
  2011. "ReservationName": {},
  2012. "InstanceCount": {
  2013. "type": "integer"
  2014. }
  2015. }
  2016. },
  2017. "output": {
  2018. "type": "structure",
  2019. "members": {
  2020. "ReservedInstanceId": {},
  2021. "ReservationName": {}
  2022. }
  2023. }
  2024. },
  2025. "RejectInboundConnection": {
  2026. "http": {
  2027. "method": "PUT",
  2028. "requestUri": "/2021-01-01/opensearch/cc/inboundConnection/{ConnectionId}/reject"
  2029. },
  2030. "input": {
  2031. "type": "structure",
  2032. "required": [
  2033. "ConnectionId"
  2034. ],
  2035. "members": {
  2036. "ConnectionId": {
  2037. "location": "uri",
  2038. "locationName": "ConnectionId"
  2039. }
  2040. }
  2041. },
  2042. "output": {
  2043. "type": "structure",
  2044. "members": {
  2045. "Connection": {
  2046. "shape": "S4"
  2047. }
  2048. }
  2049. }
  2050. },
  2051. "RemoveTags": {
  2052. "http": {
  2053. "requestUri": "/2021-01-01/tags-removal"
  2054. },
  2055. "input": {
  2056. "type": "structure",
  2057. "required": [
  2058. "ARN",
  2059. "TagKeys"
  2060. ],
  2061. "members": {
  2062. "ARN": {},
  2063. "TagKeys": {
  2064. "shape": "S21"
  2065. }
  2066. }
  2067. }
  2068. },
  2069. "RevokeVpcEndpointAccess": {
  2070. "http": {
  2071. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/revokeVpcEndpointAccess"
  2072. },
  2073. "input": {
  2074. "type": "structure",
  2075. "required": [
  2076. "DomainName",
  2077. "Account"
  2078. ],
  2079. "members": {
  2080. "DomainName": {
  2081. "location": "uri",
  2082. "locationName": "DomainName"
  2083. },
  2084. "Account": {}
  2085. }
  2086. },
  2087. "output": {
  2088. "type": "structure",
  2089. "members": {}
  2090. }
  2091. },
  2092. "StartDomainMaintenance": {
  2093. "http": {
  2094. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/domainMaintenance"
  2095. },
  2096. "input": {
  2097. "type": "structure",
  2098. "required": [
  2099. "DomainName",
  2100. "Action"
  2101. ],
  2102. "members": {
  2103. "DomainName": {
  2104. "location": "uri",
  2105. "locationName": "DomainName"
  2106. },
  2107. "Action": {},
  2108. "NodeId": {}
  2109. }
  2110. },
  2111. "output": {
  2112. "type": "structure",
  2113. "members": {
  2114. "MaintenanceId": {}
  2115. }
  2116. }
  2117. },
  2118. "StartServiceSoftwareUpdate": {
  2119. "http": {
  2120. "requestUri": "/2021-01-01/opensearch/serviceSoftwareUpdate/start"
  2121. },
  2122. "input": {
  2123. "type": "structure",
  2124. "required": [
  2125. "DomainName"
  2126. ],
  2127. "members": {
  2128. "DomainName": {},
  2129. "ScheduleAt": {},
  2130. "DesiredStartTime": {
  2131. "type": "long"
  2132. }
  2133. }
  2134. },
  2135. "output": {
  2136. "type": "structure",
  2137. "members": {
  2138. "ServiceSoftwareOptions": {
  2139. "shape": "S1j"
  2140. }
  2141. }
  2142. }
  2143. },
  2144. "UpdateDataSource": {
  2145. "http": {
  2146. "method": "PUT",
  2147. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/dataSource/{DataSourceName}"
  2148. },
  2149. "input": {
  2150. "type": "structure",
  2151. "required": [
  2152. "DomainName",
  2153. "Name",
  2154. "DataSourceType"
  2155. ],
  2156. "members": {
  2157. "DomainName": {
  2158. "location": "uri",
  2159. "locationName": "DomainName"
  2160. },
  2161. "Name": {
  2162. "location": "uri",
  2163. "locationName": "DataSourceName"
  2164. },
  2165. "DataSourceType": {
  2166. "shape": "Sg"
  2167. },
  2168. "Description": {}
  2169. }
  2170. },
  2171. "output": {
  2172. "type": "structure",
  2173. "members": {
  2174. "Message": {}
  2175. }
  2176. }
  2177. },
  2178. "UpdateDomainConfig": {
  2179. "http": {
  2180. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/config"
  2181. },
  2182. "input": {
  2183. "type": "structure",
  2184. "required": [
  2185. "DomainName"
  2186. ],
  2187. "members": {
  2188. "DomainName": {
  2189. "location": "uri",
  2190. "locationName": "DomainName"
  2191. },
  2192. "ClusterConfig": {
  2193. "shape": "S1p"
  2194. },
  2195. "EBSOptions": {
  2196. "shape": "S1v"
  2197. },
  2198. "SnapshotOptions": {
  2199. "shape": "S1z"
  2200. },
  2201. "VPCOptions": {
  2202. "shape": "S20"
  2203. },
  2204. "CognitoOptions": {
  2205. "shape": "S22"
  2206. },
  2207. "AdvancedOptions": {
  2208. "shape": "S28"
  2209. },
  2210. "AccessPolicies": {},
  2211. "IPAddressType": {},
  2212. "LogPublishingOptions": {
  2213. "shape": "S29"
  2214. },
  2215. "EncryptionAtRestOptions": {
  2216. "shape": "S25"
  2217. },
  2218. "DomainEndpointOptions": {
  2219. "shape": "S2d"
  2220. },
  2221. "NodeToNodeEncryptionOptions": {
  2222. "shape": "S27"
  2223. },
  2224. "AdvancedSecurityOptions": {
  2225. "shape": "S2g"
  2226. },
  2227. "AutoTuneOptions": {
  2228. "shape": "S68"
  2229. },
  2230. "DryRun": {
  2231. "type": "boolean"
  2232. },
  2233. "DryRunMode": {},
  2234. "OffPeakWindowOptions": {
  2235. "shape": "S2x"
  2236. },
  2237. "SoftwareUpdateOptions": {
  2238. "shape": "S32"
  2239. }
  2240. }
  2241. },
  2242. "output": {
  2243. "type": "structure",
  2244. "required": [
  2245. "DomainConfig"
  2246. ],
  2247. "members": {
  2248. "DomainConfig": {
  2249. "shape": "S5p"
  2250. },
  2251. "DryRunResults": {
  2252. "shape": "S79"
  2253. },
  2254. "DryRunProgressStatus": {
  2255. "shape": "S76"
  2256. }
  2257. }
  2258. }
  2259. },
  2260. "UpdatePackage": {
  2261. "http": {
  2262. "requestUri": "/2021-01-01/packages/update"
  2263. },
  2264. "input": {
  2265. "type": "structure",
  2266. "required": [
  2267. "PackageID",
  2268. "PackageSource"
  2269. ],
  2270. "members": {
  2271. "PackageID": {},
  2272. "PackageSource": {
  2273. "shape": "S3z"
  2274. },
  2275. "PackageDescription": {},
  2276. "CommitMessage": {}
  2277. }
  2278. },
  2279. "output": {
  2280. "type": "structure",
  2281. "members": {
  2282. "PackageDetails": {
  2283. "shape": "S43"
  2284. }
  2285. }
  2286. }
  2287. },
  2288. "UpdateScheduledAction": {
  2289. "http": {
  2290. "method": "PUT",
  2291. "requestUri": "/2021-01-01/opensearch/domain/{DomainName}/scheduledAction/update"
  2292. },
  2293. "input": {
  2294. "type": "structure",
  2295. "required": [
  2296. "DomainName",
  2297. "ActionID",
  2298. "ActionType",
  2299. "ScheduleAt"
  2300. ],
  2301. "members": {
  2302. "DomainName": {
  2303. "location": "uri",
  2304. "locationName": "DomainName"
  2305. },
  2306. "ActionID": {},
  2307. "ActionType": {},
  2308. "ScheduleAt": {},
  2309. "DesiredStartTime": {
  2310. "type": "long"
  2311. }
  2312. }
  2313. },
  2314. "output": {
  2315. "type": "structure",
  2316. "members": {
  2317. "ScheduledAction": {
  2318. "shape": "Sao"
  2319. }
  2320. }
  2321. }
  2322. },
  2323. "UpdateVpcEndpoint": {
  2324. "http": {
  2325. "requestUri": "/2021-01-01/opensearch/vpcEndpoints/update"
  2326. },
  2327. "input": {
  2328. "type": "structure",
  2329. "required": [
  2330. "VpcEndpointId",
  2331. "VpcOptions"
  2332. ],
  2333. "members": {
  2334. "VpcEndpointId": {},
  2335. "VpcOptions": {
  2336. "shape": "S20"
  2337. }
  2338. }
  2339. },
  2340. "output": {
  2341. "type": "structure",
  2342. "required": [
  2343. "VpcEndpoint"
  2344. ],
  2345. "members": {
  2346. "VpcEndpoint": {
  2347. "shape": "S4h"
  2348. }
  2349. }
  2350. }
  2351. },
  2352. "UpgradeDomain": {
  2353. "http": {
  2354. "requestUri": "/2021-01-01/opensearch/upgradeDomain"
  2355. },
  2356. "input": {
  2357. "type": "structure",
  2358. "required": [
  2359. "DomainName",
  2360. "TargetVersion"
  2361. ],
  2362. "members": {
  2363. "DomainName": {},
  2364. "TargetVersion": {},
  2365. "PerformCheckOnly": {
  2366. "type": "boolean"
  2367. },
  2368. "AdvancedOptions": {
  2369. "shape": "S28"
  2370. }
  2371. }
  2372. },
  2373. "output": {
  2374. "type": "structure",
  2375. "members": {
  2376. "UpgradeId": {},
  2377. "DomainName": {},
  2378. "TargetVersion": {},
  2379. "PerformCheckOnly": {
  2380. "type": "boolean"
  2381. },
  2382. "AdvancedOptions": {
  2383. "shape": "S28"
  2384. },
  2385. "ChangeProgressDetails": {
  2386. "shape": "S3f"
  2387. }
  2388. }
  2389. }
  2390. }
  2391. },
  2392. "shapes": {
  2393. "S4": {
  2394. "type": "structure",
  2395. "members": {
  2396. "LocalDomainInfo": {
  2397. "shape": "S5"
  2398. },
  2399. "RemoteDomainInfo": {
  2400. "shape": "S5"
  2401. },
  2402. "ConnectionId": {},
  2403. "ConnectionStatus": {
  2404. "type": "structure",
  2405. "members": {
  2406. "StatusCode": {},
  2407. "Message": {}
  2408. }
  2409. },
  2410. "ConnectionMode": {}
  2411. }
  2412. },
  2413. "S5": {
  2414. "type": "structure",
  2415. "members": {
  2416. "AWSDomainInformation": {
  2417. "type": "structure",
  2418. "required": [
  2419. "DomainName"
  2420. ],
  2421. "members": {
  2422. "OwnerId": {},
  2423. "DomainName": {},
  2424. "Region": {}
  2425. }
  2426. }
  2427. }
  2428. },
  2429. "Sg": {
  2430. "type": "structure",
  2431. "members": {
  2432. "S3GlueDataCatalog": {
  2433. "type": "structure",
  2434. "members": {
  2435. "RoleArn": {}
  2436. }
  2437. }
  2438. },
  2439. "union": true
  2440. },
  2441. "So": {
  2442. "type": "list",
  2443. "member": {
  2444. "type": "structure",
  2445. "required": [
  2446. "Key",
  2447. "Value"
  2448. ],
  2449. "members": {
  2450. "Key": {},
  2451. "Value": {}
  2452. }
  2453. }
  2454. },
  2455. "Sv": {
  2456. "type": "structure",
  2457. "members": {
  2458. "PackageID": {},
  2459. "PackageName": {},
  2460. "PackageType": {},
  2461. "LastUpdated": {
  2462. "type": "timestamp"
  2463. },
  2464. "DomainName": {},
  2465. "DomainPackageStatus": {},
  2466. "PackageVersion": {},
  2467. "ReferencePath": {},
  2468. "ErrorDetails": {
  2469. "shape": "S12"
  2470. }
  2471. }
  2472. },
  2473. "S12": {
  2474. "type": "structure",
  2475. "members": {
  2476. "ErrorType": {},
  2477. "ErrorMessage": {}
  2478. }
  2479. },
  2480. "S18": {
  2481. "type": "structure",
  2482. "members": {
  2483. "PrincipalType": {},
  2484. "Principal": {}
  2485. }
  2486. },
  2487. "S1j": {
  2488. "type": "structure",
  2489. "members": {
  2490. "CurrentVersion": {},
  2491. "NewVersion": {},
  2492. "UpdateAvailable": {
  2493. "type": "boolean"
  2494. },
  2495. "Cancellable": {
  2496. "type": "boolean"
  2497. },
  2498. "UpdateStatus": {},
  2499. "Description": {},
  2500. "AutomatedUpdateDate": {
  2501. "type": "timestamp"
  2502. },
  2503. "OptionalDeployment": {
  2504. "type": "boolean"
  2505. }
  2506. }
  2507. },
  2508. "S1p": {
  2509. "type": "structure",
  2510. "members": {
  2511. "InstanceType": {},
  2512. "InstanceCount": {
  2513. "type": "integer"
  2514. },
  2515. "DedicatedMasterEnabled": {
  2516. "type": "boolean"
  2517. },
  2518. "ZoneAwarenessEnabled": {
  2519. "type": "boolean"
  2520. },
  2521. "ZoneAwarenessConfig": {
  2522. "type": "structure",
  2523. "members": {
  2524. "AvailabilityZoneCount": {
  2525. "type": "integer"
  2526. }
  2527. }
  2528. },
  2529. "DedicatedMasterType": {},
  2530. "DedicatedMasterCount": {
  2531. "type": "integer"
  2532. },
  2533. "WarmEnabled": {
  2534. "type": "boolean"
  2535. },
  2536. "WarmType": {},
  2537. "WarmCount": {
  2538. "type": "integer"
  2539. },
  2540. "ColdStorageOptions": {
  2541. "type": "structure",
  2542. "required": [
  2543. "Enabled"
  2544. ],
  2545. "members": {
  2546. "Enabled": {
  2547. "type": "boolean"
  2548. }
  2549. }
  2550. },
  2551. "MultiAZWithStandbyEnabled": {
  2552. "type": "boolean"
  2553. }
  2554. }
  2555. },
  2556. "S1v": {
  2557. "type": "structure",
  2558. "members": {
  2559. "EBSEnabled": {
  2560. "type": "boolean"
  2561. },
  2562. "VolumeType": {},
  2563. "VolumeSize": {
  2564. "type": "integer"
  2565. },
  2566. "Iops": {
  2567. "type": "integer"
  2568. },
  2569. "Throughput": {
  2570. "type": "integer"
  2571. }
  2572. }
  2573. },
  2574. "S1z": {
  2575. "type": "structure",
  2576. "members": {
  2577. "AutomatedSnapshotStartHour": {
  2578. "type": "integer"
  2579. }
  2580. }
  2581. },
  2582. "S20": {
  2583. "type": "structure",
  2584. "members": {
  2585. "SubnetIds": {
  2586. "shape": "S21"
  2587. },
  2588. "SecurityGroupIds": {
  2589. "shape": "S21"
  2590. }
  2591. }
  2592. },
  2593. "S21": {
  2594. "type": "list",
  2595. "member": {}
  2596. },
  2597. "S22": {
  2598. "type": "structure",
  2599. "members": {
  2600. "Enabled": {
  2601. "type": "boolean"
  2602. },
  2603. "UserPoolId": {},
  2604. "IdentityPoolId": {},
  2605. "RoleArn": {}
  2606. }
  2607. },
  2608. "S25": {
  2609. "type": "structure",
  2610. "members": {
  2611. "Enabled": {
  2612. "type": "boolean"
  2613. },
  2614. "KmsKeyId": {}
  2615. }
  2616. },
  2617. "S27": {
  2618. "type": "structure",
  2619. "members": {
  2620. "Enabled": {
  2621. "type": "boolean"
  2622. }
  2623. }
  2624. },
  2625. "S28": {
  2626. "type": "map",
  2627. "key": {},
  2628. "value": {}
  2629. },
  2630. "S29": {
  2631. "type": "map",
  2632. "key": {},
  2633. "value": {
  2634. "type": "structure",
  2635. "members": {
  2636. "CloudWatchLogsLogGroupArn": {},
  2637. "Enabled": {
  2638. "type": "boolean"
  2639. }
  2640. }
  2641. }
  2642. },
  2643. "S2d": {
  2644. "type": "structure",
  2645. "members": {
  2646. "EnforceHTTPS": {
  2647. "type": "boolean"
  2648. },
  2649. "TLSSecurityPolicy": {},
  2650. "CustomEndpointEnabled": {
  2651. "type": "boolean"
  2652. },
  2653. "CustomEndpoint": {},
  2654. "CustomEndpointCertificateArn": {}
  2655. }
  2656. },
  2657. "S2g": {
  2658. "type": "structure",
  2659. "members": {
  2660. "Enabled": {
  2661. "type": "boolean"
  2662. },
  2663. "InternalUserDatabaseEnabled": {
  2664. "type": "boolean"
  2665. },
  2666. "MasterUserOptions": {
  2667. "type": "structure",
  2668. "members": {
  2669. "MasterUserARN": {},
  2670. "MasterUserName": {
  2671. "shape": "S2i"
  2672. },
  2673. "MasterUserPassword": {
  2674. "type": "string",
  2675. "sensitive": true
  2676. }
  2677. }
  2678. },
  2679. "SAMLOptions": {
  2680. "type": "structure",
  2681. "members": {
  2682. "Enabled": {
  2683. "type": "boolean"
  2684. },
  2685. "Idp": {
  2686. "shape": "S2l"
  2687. },
  2688. "MasterUserName": {
  2689. "shape": "S2i"
  2690. },
  2691. "MasterBackendRole": {},
  2692. "SubjectKey": {},
  2693. "RolesKey": {},
  2694. "SessionTimeoutMinutes": {
  2695. "type": "integer"
  2696. }
  2697. }
  2698. },
  2699. "AnonymousAuthEnabled": {
  2700. "type": "boolean"
  2701. }
  2702. }
  2703. },
  2704. "S2i": {
  2705. "type": "string",
  2706. "sensitive": true
  2707. },
  2708. "S2l": {
  2709. "type": "structure",
  2710. "required": [
  2711. "MetadataContent",
  2712. "EntityId"
  2713. ],
  2714. "members": {
  2715. "MetadataContent": {},
  2716. "EntityId": {}
  2717. }
  2718. },
  2719. "S2r": {
  2720. "type": "list",
  2721. "member": {
  2722. "type": "structure",
  2723. "members": {
  2724. "StartAt": {
  2725. "type": "timestamp"
  2726. },
  2727. "Duration": {
  2728. "type": "structure",
  2729. "members": {
  2730. "Value": {
  2731. "type": "long"
  2732. },
  2733. "Unit": {}
  2734. }
  2735. },
  2736. "CronExpressionForRecurrence": {}
  2737. }
  2738. }
  2739. },
  2740. "S2x": {
  2741. "type": "structure",
  2742. "members": {
  2743. "Enabled": {
  2744. "type": "boolean"
  2745. },
  2746. "OffPeakWindow": {
  2747. "type": "structure",
  2748. "members": {
  2749. "WindowStartTime": {
  2750. "type": "structure",
  2751. "required": [
  2752. "Hours",
  2753. "Minutes"
  2754. ],
  2755. "members": {
  2756. "Hours": {
  2757. "type": "long"
  2758. },
  2759. "Minutes": {
  2760. "type": "long"
  2761. }
  2762. }
  2763. }
  2764. }
  2765. }
  2766. }
  2767. },
  2768. "S32": {
  2769. "type": "structure",
  2770. "members": {
  2771. "AutoSoftwareUpdateEnabled": {
  2772. "type": "boolean"
  2773. }
  2774. }
  2775. },
  2776. "S34": {
  2777. "type": "structure",
  2778. "required": [
  2779. "DomainId",
  2780. "DomainName",
  2781. "ARN",
  2782. "ClusterConfig"
  2783. ],
  2784. "members": {
  2785. "DomainId": {},
  2786. "DomainName": {},
  2787. "ARN": {},
  2788. "Created": {
  2789. "type": "boolean"
  2790. },
  2791. "Deleted": {
  2792. "type": "boolean"
  2793. },
  2794. "Endpoint": {},
  2795. "EndpointV2": {},
  2796. "Endpoints": {
  2797. "type": "map",
  2798. "key": {},
  2799. "value": {}
  2800. },
  2801. "DomainEndpointV2HostedZoneId": {},
  2802. "Processing": {
  2803. "type": "boolean"
  2804. },
  2805. "UpgradeProcessing": {
  2806. "type": "boolean"
  2807. },
  2808. "EngineVersion": {},
  2809. "ClusterConfig": {
  2810. "shape": "S1p"
  2811. },
  2812. "EBSOptions": {
  2813. "shape": "S1v"
  2814. },
  2815. "AccessPolicies": {},
  2816. "IPAddressType": {},
  2817. "SnapshotOptions": {
  2818. "shape": "S1z"
  2819. },
  2820. "VPCOptions": {
  2821. "shape": "S39"
  2822. },
  2823. "CognitoOptions": {
  2824. "shape": "S22"
  2825. },
  2826. "EncryptionAtRestOptions": {
  2827. "shape": "S25"
  2828. },
  2829. "NodeToNodeEncryptionOptions": {
  2830. "shape": "S27"
  2831. },
  2832. "AdvancedOptions": {
  2833. "shape": "S28"
  2834. },
  2835. "LogPublishingOptions": {
  2836. "shape": "S29"
  2837. },
  2838. "ServiceSoftwareOptions": {
  2839. "shape": "S1j"
  2840. },
  2841. "DomainEndpointOptions": {
  2842. "shape": "S2d"
  2843. },
  2844. "AdvancedSecurityOptions": {
  2845. "shape": "S3a"
  2846. },
  2847. "AutoTuneOptions": {
  2848. "type": "structure",
  2849. "members": {
  2850. "State": {},
  2851. "ErrorMessage": {},
  2852. "UseOffPeakWindow": {
  2853. "type": "boolean"
  2854. }
  2855. }
  2856. },
  2857. "ChangeProgressDetails": {
  2858. "shape": "S3f"
  2859. },
  2860. "OffPeakWindowOptions": {
  2861. "shape": "S2x"
  2862. },
  2863. "SoftwareUpdateOptions": {
  2864. "shape": "S32"
  2865. },
  2866. "DomainProcessingStatus": {},
  2867. "ModifyingProperties": {
  2868. "shape": "S3l"
  2869. }
  2870. }
  2871. },
  2872. "S39": {
  2873. "type": "structure",
  2874. "members": {
  2875. "VPCId": {},
  2876. "SubnetIds": {
  2877. "shape": "S21"
  2878. },
  2879. "AvailabilityZones": {
  2880. "shape": "S21"
  2881. },
  2882. "SecurityGroupIds": {
  2883. "shape": "S21"
  2884. }
  2885. }
  2886. },
  2887. "S3a": {
  2888. "type": "structure",
  2889. "members": {
  2890. "Enabled": {
  2891. "type": "boolean"
  2892. },
  2893. "InternalUserDatabaseEnabled": {
  2894. "type": "boolean"
  2895. },
  2896. "SAMLOptions": {
  2897. "type": "structure",
  2898. "members": {
  2899. "Enabled": {
  2900. "type": "boolean"
  2901. },
  2902. "Idp": {
  2903. "shape": "S2l"
  2904. },
  2905. "SubjectKey": {},
  2906. "RolesKey": {},
  2907. "SessionTimeoutMinutes": {
  2908. "type": "integer"
  2909. }
  2910. }
  2911. },
  2912. "AnonymousAuthDisableDate": {
  2913. "type": "timestamp"
  2914. },
  2915. "AnonymousAuthEnabled": {
  2916. "type": "boolean"
  2917. }
  2918. }
  2919. },
  2920. "S3f": {
  2921. "type": "structure",
  2922. "members": {
  2923. "ChangeId": {},
  2924. "Message": {},
  2925. "ConfigChangeStatus": {},
  2926. "InitiatedBy": {},
  2927. "StartTime": {
  2928. "type": "timestamp"
  2929. },
  2930. "LastUpdatedTime": {
  2931. "type": "timestamp"
  2932. }
  2933. }
  2934. },
  2935. "S3l": {
  2936. "type": "list",
  2937. "member": {
  2938. "type": "structure",
  2939. "members": {
  2940. "Name": {},
  2941. "ActiveValue": {},
  2942. "PendingValue": {},
  2943. "ValueType": {}
  2944. }
  2945. }
  2946. },
  2947. "S3q": {
  2948. "type": "structure",
  2949. "members": {
  2950. "Endpoint": {},
  2951. "CrossClusterSearch": {
  2952. "type": "structure",
  2953. "members": {
  2954. "SkipUnavailable": {}
  2955. }
  2956. }
  2957. }
  2958. },
  2959. "S3v": {
  2960. "type": "structure",
  2961. "members": {
  2962. "StatusCode": {},
  2963. "Message": {}
  2964. }
  2965. },
  2966. "S3z": {
  2967. "type": "structure",
  2968. "members": {
  2969. "S3BucketName": {},
  2970. "S3Key": {}
  2971. }
  2972. },
  2973. "S43": {
  2974. "type": "structure",
  2975. "members": {
  2976. "PackageID": {},
  2977. "PackageName": {},
  2978. "PackageType": {},
  2979. "PackageDescription": {},
  2980. "PackageStatus": {},
  2981. "CreatedAt": {
  2982. "type": "timestamp"
  2983. },
  2984. "LastUpdatedAt": {
  2985. "type": "timestamp"
  2986. },
  2987. "AvailablePackageVersion": {},
  2988. "ErrorDetails": {
  2989. "shape": "S12"
  2990. },
  2991. "EngineVersion": {},
  2992. "AvailablePluginProperties": {
  2993. "shape": "S47"
  2994. }
  2995. }
  2996. },
  2997. "S47": {
  2998. "type": "structure",
  2999. "members": {
  3000. "Name": {},
  3001. "Description": {},
  3002. "Version": {},
  3003. "ClassName": {},
  3004. "UncompressedSizeInBytes": {
  3005. "type": "long"
  3006. }
  3007. }
  3008. },
  3009. "S4h": {
  3010. "type": "structure",
  3011. "members": {
  3012. "VpcEndpointId": {},
  3013. "VpcEndpointOwner": {},
  3014. "DomainArn": {},
  3015. "VpcOptions": {
  3016. "shape": "S39"
  3017. },
  3018. "Status": {},
  3019. "Endpoint": {}
  3020. }
  3021. },
  3022. "S4s": {
  3023. "type": "structure",
  3024. "members": {
  3025. "LocalDomainInfo": {
  3026. "shape": "S5"
  3027. },
  3028. "RemoteDomainInfo": {
  3029. "shape": "S5"
  3030. },
  3031. "ConnectionId": {},
  3032. "ConnectionAlias": {},
  3033. "ConnectionStatus": {
  3034. "shape": "S3v"
  3035. },
  3036. "ConnectionMode": {},
  3037. "ConnectionProperties": {
  3038. "shape": "S3q"
  3039. }
  3040. }
  3041. },
  3042. "S4x": {
  3043. "type": "structure",
  3044. "members": {
  3045. "VpcEndpointId": {},
  3046. "VpcEndpointOwner": {},
  3047. "DomainArn": {},
  3048. "Status": {}
  3049. }
  3050. },
  3051. "S5p": {
  3052. "type": "structure",
  3053. "members": {
  3054. "EngineVersion": {
  3055. "type": "structure",
  3056. "required": [
  3057. "Options",
  3058. "Status"
  3059. ],
  3060. "members": {
  3061. "Options": {},
  3062. "Status": {
  3063. "shape": "S5r"
  3064. }
  3065. }
  3066. },
  3067. "ClusterConfig": {
  3068. "type": "structure",
  3069. "required": [
  3070. "Options",
  3071. "Status"
  3072. ],
  3073. "members": {
  3074. "Options": {
  3075. "shape": "S1p"
  3076. },
  3077. "Status": {
  3078. "shape": "S5r"
  3079. }
  3080. }
  3081. },
  3082. "EBSOptions": {
  3083. "type": "structure",
  3084. "required": [
  3085. "Options",
  3086. "Status"
  3087. ],
  3088. "members": {
  3089. "Options": {
  3090. "shape": "S1v"
  3091. },
  3092. "Status": {
  3093. "shape": "S5r"
  3094. }
  3095. }
  3096. },
  3097. "AccessPolicies": {
  3098. "type": "structure",
  3099. "required": [
  3100. "Options",
  3101. "Status"
  3102. ],
  3103. "members": {
  3104. "Options": {},
  3105. "Status": {
  3106. "shape": "S5r"
  3107. }
  3108. }
  3109. },
  3110. "IPAddressType": {
  3111. "type": "structure",
  3112. "required": [
  3113. "Options",
  3114. "Status"
  3115. ],
  3116. "members": {
  3117. "Options": {},
  3118. "Status": {
  3119. "shape": "S5r"
  3120. }
  3121. }
  3122. },
  3123. "SnapshotOptions": {
  3124. "type": "structure",
  3125. "required": [
  3126. "Options",
  3127. "Status"
  3128. ],
  3129. "members": {
  3130. "Options": {
  3131. "shape": "S1z"
  3132. },
  3133. "Status": {
  3134. "shape": "S5r"
  3135. }
  3136. }
  3137. },
  3138. "VPCOptions": {
  3139. "type": "structure",
  3140. "required": [
  3141. "Options",
  3142. "Status"
  3143. ],
  3144. "members": {
  3145. "Options": {
  3146. "shape": "S39"
  3147. },
  3148. "Status": {
  3149. "shape": "S5r"
  3150. }
  3151. }
  3152. },
  3153. "CognitoOptions": {
  3154. "type": "structure",
  3155. "required": [
  3156. "Options",
  3157. "Status"
  3158. ],
  3159. "members": {
  3160. "Options": {
  3161. "shape": "S22"
  3162. },
  3163. "Status": {
  3164. "shape": "S5r"
  3165. }
  3166. }
  3167. },
  3168. "EncryptionAtRestOptions": {
  3169. "type": "structure",
  3170. "required": [
  3171. "Options",
  3172. "Status"
  3173. ],
  3174. "members": {
  3175. "Options": {
  3176. "shape": "S25"
  3177. },
  3178. "Status": {
  3179. "shape": "S5r"
  3180. }
  3181. }
  3182. },
  3183. "NodeToNodeEncryptionOptions": {
  3184. "type": "structure",
  3185. "required": [
  3186. "Options",
  3187. "Status"
  3188. ],
  3189. "members": {
  3190. "Options": {
  3191. "shape": "S27"
  3192. },
  3193. "Status": {
  3194. "shape": "S5r"
  3195. }
  3196. }
  3197. },
  3198. "AdvancedOptions": {
  3199. "type": "structure",
  3200. "required": [
  3201. "Options",
  3202. "Status"
  3203. ],
  3204. "members": {
  3205. "Options": {
  3206. "shape": "S28"
  3207. },
  3208. "Status": {
  3209. "shape": "S5r"
  3210. }
  3211. }
  3212. },
  3213. "LogPublishingOptions": {
  3214. "type": "structure",
  3215. "members": {
  3216. "Options": {
  3217. "shape": "S29"
  3218. },
  3219. "Status": {
  3220. "shape": "S5r"
  3221. }
  3222. }
  3223. },
  3224. "DomainEndpointOptions": {
  3225. "type": "structure",
  3226. "required": [
  3227. "Options",
  3228. "Status"
  3229. ],
  3230. "members": {
  3231. "Options": {
  3232. "shape": "S2d"
  3233. },
  3234. "Status": {
  3235. "shape": "S5r"
  3236. }
  3237. }
  3238. },
  3239. "AdvancedSecurityOptions": {
  3240. "type": "structure",
  3241. "required": [
  3242. "Options",
  3243. "Status"
  3244. ],
  3245. "members": {
  3246. "Options": {
  3247. "shape": "S3a"
  3248. },
  3249. "Status": {
  3250. "shape": "S5r"
  3251. }
  3252. }
  3253. },
  3254. "AutoTuneOptions": {
  3255. "type": "structure",
  3256. "members": {
  3257. "Options": {
  3258. "shape": "S68"
  3259. },
  3260. "Status": {
  3261. "type": "structure",
  3262. "required": [
  3263. "CreationDate",
  3264. "UpdateDate",
  3265. "State"
  3266. ],
  3267. "members": {
  3268. "CreationDate": {
  3269. "type": "timestamp"
  3270. },
  3271. "UpdateDate": {
  3272. "type": "timestamp"
  3273. },
  3274. "UpdateVersion": {
  3275. "type": "integer"
  3276. },
  3277. "State": {},
  3278. "ErrorMessage": {},
  3279. "PendingDeletion": {
  3280. "type": "boolean"
  3281. }
  3282. }
  3283. }
  3284. }
  3285. },
  3286. "ChangeProgressDetails": {
  3287. "shape": "S3f"
  3288. },
  3289. "OffPeakWindowOptions": {
  3290. "type": "structure",
  3291. "members": {
  3292. "Options": {
  3293. "shape": "S2x"
  3294. },
  3295. "Status": {
  3296. "shape": "S5r"
  3297. }
  3298. }
  3299. },
  3300. "SoftwareUpdateOptions": {
  3301. "type": "structure",
  3302. "members": {
  3303. "Options": {
  3304. "shape": "S32"
  3305. },
  3306. "Status": {
  3307. "shape": "S5r"
  3308. }
  3309. }
  3310. },
  3311. "ModifyingProperties": {
  3312. "shape": "S3l"
  3313. }
  3314. }
  3315. },
  3316. "S5r": {
  3317. "type": "structure",
  3318. "required": [
  3319. "CreationDate",
  3320. "UpdateDate",
  3321. "State"
  3322. ],
  3323. "members": {
  3324. "CreationDate": {
  3325. "type": "timestamp"
  3326. },
  3327. "UpdateDate": {
  3328. "type": "timestamp"
  3329. },
  3330. "UpdateVersion": {
  3331. "type": "integer"
  3332. },
  3333. "State": {},
  3334. "PendingDeletion": {
  3335. "type": "boolean"
  3336. }
  3337. }
  3338. },
  3339. "S68": {
  3340. "type": "structure",
  3341. "members": {
  3342. "DesiredState": {},
  3343. "RollbackOnDisable": {},
  3344. "MaintenanceSchedules": {
  3345. "shape": "S2r"
  3346. },
  3347. "UseOffPeakWindow": {
  3348. "type": "boolean"
  3349. }
  3350. }
  3351. },
  3352. "S76": {
  3353. "type": "structure",
  3354. "required": [
  3355. "DryRunId",
  3356. "DryRunStatus",
  3357. "CreationDate",
  3358. "UpdateDate"
  3359. ],
  3360. "members": {
  3361. "DryRunId": {},
  3362. "DryRunStatus": {},
  3363. "CreationDate": {},
  3364. "UpdateDate": {},
  3365. "ValidationFailures": {
  3366. "type": "list",
  3367. "member": {
  3368. "type": "structure",
  3369. "members": {
  3370. "Code": {},
  3371. "Message": {}
  3372. }
  3373. }
  3374. }
  3375. }
  3376. },
  3377. "S79": {
  3378. "type": "structure",
  3379. "members": {
  3380. "DeploymentType": {},
  3381. "Message": {}
  3382. }
  3383. },
  3384. "S7c": {
  3385. "type": "list",
  3386. "member": {
  3387. "type": "structure",
  3388. "members": {
  3389. "Name": {},
  3390. "Values": {
  3391. "type": "list",
  3392. "member": {}
  3393. }
  3394. }
  3395. }
  3396. },
  3397. "S7t": {
  3398. "type": "list",
  3399. "member": {}
  3400. },
  3401. "S8j": {
  3402. "type": "list",
  3403. "member": {
  3404. "type": "structure",
  3405. "members": {
  3406. "RecurringChargeAmount": {
  3407. "type": "double"
  3408. },
  3409. "RecurringChargeFrequency": {}
  3410. }
  3411. }
  3412. },
  3413. "S94": {
  3414. "type": "list",
  3415. "member": {}
  3416. },
  3417. "Sab": {
  3418. "type": "list",
  3419. "member": {
  3420. "shape": "Sv"
  3421. }
  3422. },
  3423. "Sao": {
  3424. "type": "structure",
  3425. "required": [
  3426. "Id",
  3427. "Type",
  3428. "Severity",
  3429. "ScheduledTime"
  3430. ],
  3431. "members": {
  3432. "Id": {},
  3433. "Type": {},
  3434. "Severity": {},
  3435. "ScheduledTime": {
  3436. "type": "long"
  3437. },
  3438. "Description": {},
  3439. "ScheduledBy": {},
  3440. "Status": {},
  3441. "Mandatory": {
  3442. "type": "boolean"
  3443. },
  3444. "Cancellable": {
  3445. "type": "boolean"
  3446. }
  3447. }
  3448. },
  3449. "Sb2": {
  3450. "type": "list",
  3451. "member": {
  3452. "shape": "S4x"
  3453. }
  3454. }
  3455. }
  3456. }