eventbridge-2015-10-07.min.json 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2015-10-07",
  5. "endpointPrefix": "events",
  6. "jsonVersion": "1.1",
  7. "protocol": "json",
  8. "serviceFullName": "Amazon EventBridge",
  9. "serviceId": "EventBridge",
  10. "signatureVersion": "v4",
  11. "targetPrefix": "AWSEvents",
  12. "uid": "eventbridge-2015-10-07"
  13. },
  14. "operations": {
  15. "ActivateEventSource": {
  16. "input": {
  17. "type": "structure",
  18. "required": [
  19. "Name"
  20. ],
  21. "members": {
  22. "Name": {}
  23. }
  24. }
  25. },
  26. "CancelReplay": {
  27. "input": {
  28. "type": "structure",
  29. "required": [
  30. "ReplayName"
  31. ],
  32. "members": {
  33. "ReplayName": {}
  34. }
  35. },
  36. "output": {
  37. "type": "structure",
  38. "members": {
  39. "ReplayArn": {},
  40. "State": {},
  41. "StateReason": {}
  42. }
  43. }
  44. },
  45. "CreateApiDestination": {
  46. "input": {
  47. "type": "structure",
  48. "required": [
  49. "Name",
  50. "ConnectionArn",
  51. "InvocationEndpoint",
  52. "HttpMethod"
  53. ],
  54. "members": {
  55. "Name": {},
  56. "Description": {},
  57. "ConnectionArn": {},
  58. "InvocationEndpoint": {},
  59. "HttpMethod": {},
  60. "InvocationRateLimitPerSecond": {
  61. "type": "integer"
  62. }
  63. }
  64. },
  65. "output": {
  66. "type": "structure",
  67. "members": {
  68. "ApiDestinationArn": {},
  69. "ApiDestinationState": {},
  70. "CreationTime": {
  71. "type": "timestamp"
  72. },
  73. "LastModifiedTime": {
  74. "type": "timestamp"
  75. }
  76. }
  77. }
  78. },
  79. "CreateArchive": {
  80. "input": {
  81. "type": "structure",
  82. "required": [
  83. "ArchiveName",
  84. "EventSourceArn"
  85. ],
  86. "members": {
  87. "ArchiveName": {},
  88. "EventSourceArn": {},
  89. "Description": {},
  90. "EventPattern": {},
  91. "RetentionDays": {
  92. "type": "integer"
  93. }
  94. }
  95. },
  96. "output": {
  97. "type": "structure",
  98. "members": {
  99. "ArchiveArn": {},
  100. "State": {},
  101. "StateReason": {},
  102. "CreationTime": {
  103. "type": "timestamp"
  104. }
  105. }
  106. }
  107. },
  108. "CreateConnection": {
  109. "input": {
  110. "type": "structure",
  111. "required": [
  112. "Name",
  113. "AuthorizationType",
  114. "AuthParameters"
  115. ],
  116. "members": {
  117. "Name": {},
  118. "Description": {},
  119. "AuthorizationType": {},
  120. "AuthParameters": {
  121. "type": "structure",
  122. "members": {
  123. "BasicAuthParameters": {
  124. "type": "structure",
  125. "required": [
  126. "Username",
  127. "Password"
  128. ],
  129. "members": {
  130. "Username": {},
  131. "Password": {
  132. "shape": "S11"
  133. }
  134. }
  135. },
  136. "OAuthParameters": {
  137. "type": "structure",
  138. "required": [
  139. "ClientParameters",
  140. "AuthorizationEndpoint",
  141. "HttpMethod"
  142. ],
  143. "members": {
  144. "ClientParameters": {
  145. "type": "structure",
  146. "required": [
  147. "ClientID",
  148. "ClientSecret"
  149. ],
  150. "members": {
  151. "ClientID": {},
  152. "ClientSecret": {
  153. "shape": "S11"
  154. }
  155. }
  156. },
  157. "AuthorizationEndpoint": {},
  158. "HttpMethod": {},
  159. "OAuthHttpParameters": {
  160. "shape": "S15"
  161. }
  162. }
  163. },
  164. "ApiKeyAuthParameters": {
  165. "type": "structure",
  166. "required": [
  167. "ApiKeyName",
  168. "ApiKeyValue"
  169. ],
  170. "members": {
  171. "ApiKeyName": {},
  172. "ApiKeyValue": {
  173. "shape": "S11"
  174. }
  175. }
  176. },
  177. "InvocationHttpParameters": {
  178. "shape": "S15"
  179. }
  180. }
  181. }
  182. }
  183. },
  184. "output": {
  185. "type": "structure",
  186. "members": {
  187. "ConnectionArn": {},
  188. "ConnectionState": {},
  189. "CreationTime": {
  190. "type": "timestamp"
  191. },
  192. "LastModifiedTime": {
  193. "type": "timestamp"
  194. }
  195. }
  196. }
  197. },
  198. "CreateEndpoint": {
  199. "input": {
  200. "type": "structure",
  201. "required": [
  202. "Name",
  203. "RoutingConfig",
  204. "EventBuses"
  205. ],
  206. "members": {
  207. "Name": {},
  208. "Description": {},
  209. "RoutingConfig": {
  210. "shape": "S1p"
  211. },
  212. "ReplicationConfig": {
  213. "shape": "S1v"
  214. },
  215. "EventBuses": {
  216. "shape": "S1x"
  217. },
  218. "RoleArn": {}
  219. }
  220. },
  221. "output": {
  222. "type": "structure",
  223. "members": {
  224. "Name": {},
  225. "Arn": {},
  226. "RoutingConfig": {
  227. "shape": "S1p"
  228. },
  229. "ReplicationConfig": {
  230. "shape": "S1v"
  231. },
  232. "EventBuses": {
  233. "shape": "S1x"
  234. },
  235. "RoleArn": {},
  236. "State": {}
  237. }
  238. }
  239. },
  240. "CreateEventBus": {
  241. "input": {
  242. "type": "structure",
  243. "required": [
  244. "Name"
  245. ],
  246. "members": {
  247. "Name": {},
  248. "EventSourceName": {},
  249. "Tags": {
  250. "shape": "S26"
  251. }
  252. }
  253. },
  254. "output": {
  255. "type": "structure",
  256. "members": {
  257. "EventBusArn": {}
  258. }
  259. }
  260. },
  261. "CreatePartnerEventSource": {
  262. "input": {
  263. "type": "structure",
  264. "required": [
  265. "Name",
  266. "Account"
  267. ],
  268. "members": {
  269. "Name": {},
  270. "Account": {}
  271. }
  272. },
  273. "output": {
  274. "type": "structure",
  275. "members": {
  276. "EventSourceArn": {}
  277. }
  278. }
  279. },
  280. "DeactivateEventSource": {
  281. "input": {
  282. "type": "structure",
  283. "required": [
  284. "Name"
  285. ],
  286. "members": {
  287. "Name": {}
  288. }
  289. }
  290. },
  291. "DeauthorizeConnection": {
  292. "input": {
  293. "type": "structure",
  294. "required": [
  295. "Name"
  296. ],
  297. "members": {
  298. "Name": {}
  299. }
  300. },
  301. "output": {
  302. "type": "structure",
  303. "members": {
  304. "ConnectionArn": {},
  305. "ConnectionState": {},
  306. "CreationTime": {
  307. "type": "timestamp"
  308. },
  309. "LastModifiedTime": {
  310. "type": "timestamp"
  311. },
  312. "LastAuthorizedTime": {
  313. "type": "timestamp"
  314. }
  315. }
  316. }
  317. },
  318. "DeleteApiDestination": {
  319. "input": {
  320. "type": "structure",
  321. "required": [
  322. "Name"
  323. ],
  324. "members": {
  325. "Name": {}
  326. }
  327. },
  328. "output": {
  329. "type": "structure",
  330. "members": {}
  331. }
  332. },
  333. "DeleteArchive": {
  334. "input": {
  335. "type": "structure",
  336. "required": [
  337. "ArchiveName"
  338. ],
  339. "members": {
  340. "ArchiveName": {}
  341. }
  342. },
  343. "output": {
  344. "type": "structure",
  345. "members": {}
  346. }
  347. },
  348. "DeleteConnection": {
  349. "input": {
  350. "type": "structure",
  351. "required": [
  352. "Name"
  353. ],
  354. "members": {
  355. "Name": {}
  356. }
  357. },
  358. "output": {
  359. "type": "structure",
  360. "members": {
  361. "ConnectionArn": {},
  362. "ConnectionState": {},
  363. "CreationTime": {
  364. "type": "timestamp"
  365. },
  366. "LastModifiedTime": {
  367. "type": "timestamp"
  368. },
  369. "LastAuthorizedTime": {
  370. "type": "timestamp"
  371. }
  372. }
  373. }
  374. },
  375. "DeleteEndpoint": {
  376. "input": {
  377. "type": "structure",
  378. "required": [
  379. "Name"
  380. ],
  381. "members": {
  382. "Name": {}
  383. }
  384. },
  385. "output": {
  386. "type": "structure",
  387. "members": {}
  388. }
  389. },
  390. "DeleteEventBus": {
  391. "input": {
  392. "type": "structure",
  393. "required": [
  394. "Name"
  395. ],
  396. "members": {
  397. "Name": {}
  398. }
  399. }
  400. },
  401. "DeletePartnerEventSource": {
  402. "input": {
  403. "type": "structure",
  404. "required": [
  405. "Name",
  406. "Account"
  407. ],
  408. "members": {
  409. "Name": {},
  410. "Account": {}
  411. }
  412. }
  413. },
  414. "DeleteRule": {
  415. "input": {
  416. "type": "structure",
  417. "required": [
  418. "Name"
  419. ],
  420. "members": {
  421. "Name": {},
  422. "EventBusName": {},
  423. "Force": {
  424. "type": "boolean"
  425. }
  426. }
  427. }
  428. },
  429. "DescribeApiDestination": {
  430. "input": {
  431. "type": "structure",
  432. "required": [
  433. "Name"
  434. ],
  435. "members": {
  436. "Name": {}
  437. }
  438. },
  439. "output": {
  440. "type": "structure",
  441. "members": {
  442. "ApiDestinationArn": {},
  443. "Name": {},
  444. "Description": {},
  445. "ApiDestinationState": {},
  446. "ConnectionArn": {},
  447. "InvocationEndpoint": {},
  448. "HttpMethod": {},
  449. "InvocationRateLimitPerSecond": {
  450. "type": "integer"
  451. },
  452. "CreationTime": {
  453. "type": "timestamp"
  454. },
  455. "LastModifiedTime": {
  456. "type": "timestamp"
  457. }
  458. }
  459. }
  460. },
  461. "DescribeArchive": {
  462. "input": {
  463. "type": "structure",
  464. "required": [
  465. "ArchiveName"
  466. ],
  467. "members": {
  468. "ArchiveName": {}
  469. }
  470. },
  471. "output": {
  472. "type": "structure",
  473. "members": {
  474. "ArchiveArn": {},
  475. "ArchiveName": {},
  476. "EventSourceArn": {},
  477. "Description": {},
  478. "EventPattern": {},
  479. "State": {},
  480. "StateReason": {},
  481. "RetentionDays": {
  482. "type": "integer"
  483. },
  484. "SizeBytes": {
  485. "type": "long"
  486. },
  487. "EventCount": {
  488. "type": "long"
  489. },
  490. "CreationTime": {
  491. "type": "timestamp"
  492. }
  493. }
  494. }
  495. },
  496. "DescribeConnection": {
  497. "input": {
  498. "type": "structure",
  499. "required": [
  500. "Name"
  501. ],
  502. "members": {
  503. "Name": {}
  504. }
  505. },
  506. "output": {
  507. "type": "structure",
  508. "members": {
  509. "ConnectionArn": {},
  510. "Name": {},
  511. "Description": {},
  512. "ConnectionState": {},
  513. "StateReason": {},
  514. "AuthorizationType": {},
  515. "SecretArn": {},
  516. "AuthParameters": {
  517. "type": "structure",
  518. "members": {
  519. "BasicAuthParameters": {
  520. "type": "structure",
  521. "members": {
  522. "Username": {}
  523. }
  524. },
  525. "OAuthParameters": {
  526. "type": "structure",
  527. "members": {
  528. "ClientParameters": {
  529. "type": "structure",
  530. "members": {
  531. "ClientID": {}
  532. }
  533. },
  534. "AuthorizationEndpoint": {},
  535. "HttpMethod": {},
  536. "OAuthHttpParameters": {
  537. "shape": "S15"
  538. }
  539. }
  540. },
  541. "ApiKeyAuthParameters": {
  542. "type": "structure",
  543. "members": {
  544. "ApiKeyName": {}
  545. }
  546. },
  547. "InvocationHttpParameters": {
  548. "shape": "S15"
  549. }
  550. }
  551. },
  552. "CreationTime": {
  553. "type": "timestamp"
  554. },
  555. "LastModifiedTime": {
  556. "type": "timestamp"
  557. },
  558. "LastAuthorizedTime": {
  559. "type": "timestamp"
  560. }
  561. }
  562. }
  563. },
  564. "DescribeEndpoint": {
  565. "input": {
  566. "type": "structure",
  567. "required": [
  568. "Name"
  569. ],
  570. "members": {
  571. "Name": {},
  572. "HomeRegion": {}
  573. }
  574. },
  575. "output": {
  576. "type": "structure",
  577. "members": {
  578. "Name": {},
  579. "Description": {},
  580. "Arn": {},
  581. "RoutingConfig": {
  582. "shape": "S1p"
  583. },
  584. "ReplicationConfig": {
  585. "shape": "S1v"
  586. },
  587. "EventBuses": {
  588. "shape": "S1x"
  589. },
  590. "RoleArn": {},
  591. "EndpointId": {},
  592. "EndpointUrl": {},
  593. "State": {},
  594. "StateReason": {},
  595. "CreationTime": {
  596. "type": "timestamp"
  597. },
  598. "LastModifiedTime": {
  599. "type": "timestamp"
  600. }
  601. }
  602. }
  603. },
  604. "DescribeEventBus": {
  605. "input": {
  606. "type": "structure",
  607. "members": {
  608. "Name": {}
  609. }
  610. },
  611. "output": {
  612. "type": "structure",
  613. "members": {
  614. "Name": {},
  615. "Arn": {},
  616. "Policy": {}
  617. }
  618. }
  619. },
  620. "DescribeEventSource": {
  621. "input": {
  622. "type": "structure",
  623. "required": [
  624. "Name"
  625. ],
  626. "members": {
  627. "Name": {}
  628. }
  629. },
  630. "output": {
  631. "type": "structure",
  632. "members": {
  633. "Arn": {},
  634. "CreatedBy": {},
  635. "CreationTime": {
  636. "type": "timestamp"
  637. },
  638. "ExpirationTime": {
  639. "type": "timestamp"
  640. },
  641. "Name": {},
  642. "State": {}
  643. }
  644. }
  645. },
  646. "DescribePartnerEventSource": {
  647. "input": {
  648. "type": "structure",
  649. "required": [
  650. "Name"
  651. ],
  652. "members": {
  653. "Name": {}
  654. }
  655. },
  656. "output": {
  657. "type": "structure",
  658. "members": {
  659. "Arn": {},
  660. "Name": {}
  661. }
  662. }
  663. },
  664. "DescribeReplay": {
  665. "input": {
  666. "type": "structure",
  667. "required": [
  668. "ReplayName"
  669. ],
  670. "members": {
  671. "ReplayName": {}
  672. }
  673. },
  674. "output": {
  675. "type": "structure",
  676. "members": {
  677. "ReplayName": {},
  678. "ReplayArn": {},
  679. "Description": {},
  680. "State": {},
  681. "StateReason": {},
  682. "EventSourceArn": {},
  683. "Destination": {
  684. "shape": "S3o"
  685. },
  686. "EventStartTime": {
  687. "type": "timestamp"
  688. },
  689. "EventEndTime": {
  690. "type": "timestamp"
  691. },
  692. "EventLastReplayedTime": {
  693. "type": "timestamp"
  694. },
  695. "ReplayStartTime": {
  696. "type": "timestamp"
  697. },
  698. "ReplayEndTime": {
  699. "type": "timestamp"
  700. }
  701. }
  702. }
  703. },
  704. "DescribeRule": {
  705. "input": {
  706. "type": "structure",
  707. "required": [
  708. "Name"
  709. ],
  710. "members": {
  711. "Name": {},
  712. "EventBusName": {}
  713. }
  714. },
  715. "output": {
  716. "type": "structure",
  717. "members": {
  718. "Name": {},
  719. "Arn": {},
  720. "EventPattern": {},
  721. "ScheduleExpression": {},
  722. "State": {},
  723. "Description": {},
  724. "RoleArn": {},
  725. "ManagedBy": {},
  726. "EventBusName": {},
  727. "CreatedBy": {}
  728. }
  729. }
  730. },
  731. "DisableRule": {
  732. "input": {
  733. "type": "structure",
  734. "required": [
  735. "Name"
  736. ],
  737. "members": {
  738. "Name": {},
  739. "EventBusName": {}
  740. }
  741. }
  742. },
  743. "EnableRule": {
  744. "input": {
  745. "type": "structure",
  746. "required": [
  747. "Name"
  748. ],
  749. "members": {
  750. "Name": {},
  751. "EventBusName": {}
  752. }
  753. }
  754. },
  755. "ListApiDestinations": {
  756. "input": {
  757. "type": "structure",
  758. "members": {
  759. "NamePrefix": {},
  760. "ConnectionArn": {},
  761. "NextToken": {},
  762. "Limit": {
  763. "type": "integer"
  764. }
  765. }
  766. },
  767. "output": {
  768. "type": "structure",
  769. "members": {
  770. "ApiDestinations": {
  771. "type": "list",
  772. "member": {
  773. "type": "structure",
  774. "members": {
  775. "ApiDestinationArn": {},
  776. "Name": {},
  777. "ApiDestinationState": {},
  778. "ConnectionArn": {},
  779. "InvocationEndpoint": {},
  780. "HttpMethod": {},
  781. "InvocationRateLimitPerSecond": {
  782. "type": "integer"
  783. },
  784. "CreationTime": {
  785. "type": "timestamp"
  786. },
  787. "LastModifiedTime": {
  788. "type": "timestamp"
  789. }
  790. }
  791. }
  792. },
  793. "NextToken": {}
  794. }
  795. }
  796. },
  797. "ListArchives": {
  798. "input": {
  799. "type": "structure",
  800. "members": {
  801. "NamePrefix": {},
  802. "EventSourceArn": {},
  803. "State": {},
  804. "NextToken": {},
  805. "Limit": {
  806. "type": "integer"
  807. }
  808. }
  809. },
  810. "output": {
  811. "type": "structure",
  812. "members": {
  813. "Archives": {
  814. "type": "list",
  815. "member": {
  816. "type": "structure",
  817. "members": {
  818. "ArchiveName": {},
  819. "EventSourceArn": {},
  820. "State": {},
  821. "StateReason": {},
  822. "RetentionDays": {
  823. "type": "integer"
  824. },
  825. "SizeBytes": {
  826. "type": "long"
  827. },
  828. "EventCount": {
  829. "type": "long"
  830. },
  831. "CreationTime": {
  832. "type": "timestamp"
  833. }
  834. }
  835. }
  836. },
  837. "NextToken": {}
  838. }
  839. }
  840. },
  841. "ListConnections": {
  842. "input": {
  843. "type": "structure",
  844. "members": {
  845. "NamePrefix": {},
  846. "ConnectionState": {},
  847. "NextToken": {},
  848. "Limit": {
  849. "type": "integer"
  850. }
  851. }
  852. },
  853. "output": {
  854. "type": "structure",
  855. "members": {
  856. "Connections": {
  857. "type": "list",
  858. "member": {
  859. "type": "structure",
  860. "members": {
  861. "ConnectionArn": {},
  862. "Name": {},
  863. "ConnectionState": {},
  864. "StateReason": {},
  865. "AuthorizationType": {},
  866. "CreationTime": {
  867. "type": "timestamp"
  868. },
  869. "LastModifiedTime": {
  870. "type": "timestamp"
  871. },
  872. "LastAuthorizedTime": {
  873. "type": "timestamp"
  874. }
  875. }
  876. }
  877. },
  878. "NextToken": {}
  879. }
  880. }
  881. },
  882. "ListEndpoints": {
  883. "input": {
  884. "type": "structure",
  885. "members": {
  886. "NamePrefix": {},
  887. "HomeRegion": {},
  888. "NextToken": {},
  889. "MaxResults": {
  890. "type": "integer"
  891. }
  892. }
  893. },
  894. "output": {
  895. "type": "structure",
  896. "members": {
  897. "Endpoints": {
  898. "type": "list",
  899. "member": {
  900. "type": "structure",
  901. "members": {
  902. "Name": {},
  903. "Description": {},
  904. "Arn": {},
  905. "RoutingConfig": {
  906. "shape": "S1p"
  907. },
  908. "ReplicationConfig": {
  909. "shape": "S1v"
  910. },
  911. "EventBuses": {
  912. "shape": "S1x"
  913. },
  914. "RoleArn": {},
  915. "EndpointId": {},
  916. "EndpointUrl": {},
  917. "State": {},
  918. "StateReason": {},
  919. "CreationTime": {
  920. "type": "timestamp"
  921. },
  922. "LastModifiedTime": {
  923. "type": "timestamp"
  924. }
  925. }
  926. }
  927. },
  928. "NextToken": {}
  929. }
  930. }
  931. },
  932. "ListEventBuses": {
  933. "input": {
  934. "type": "structure",
  935. "members": {
  936. "NamePrefix": {},
  937. "NextToken": {},
  938. "Limit": {
  939. "type": "integer"
  940. }
  941. }
  942. },
  943. "output": {
  944. "type": "structure",
  945. "members": {
  946. "EventBuses": {
  947. "type": "list",
  948. "member": {
  949. "type": "structure",
  950. "members": {
  951. "Name": {},
  952. "Arn": {},
  953. "Policy": {}
  954. }
  955. }
  956. },
  957. "NextToken": {}
  958. }
  959. }
  960. },
  961. "ListEventSources": {
  962. "input": {
  963. "type": "structure",
  964. "members": {
  965. "NamePrefix": {},
  966. "NextToken": {},
  967. "Limit": {
  968. "type": "integer"
  969. }
  970. }
  971. },
  972. "output": {
  973. "type": "structure",
  974. "members": {
  975. "EventSources": {
  976. "type": "list",
  977. "member": {
  978. "type": "structure",
  979. "members": {
  980. "Arn": {},
  981. "CreatedBy": {},
  982. "CreationTime": {
  983. "type": "timestamp"
  984. },
  985. "ExpirationTime": {
  986. "type": "timestamp"
  987. },
  988. "Name": {},
  989. "State": {}
  990. }
  991. }
  992. },
  993. "NextToken": {}
  994. }
  995. }
  996. },
  997. "ListPartnerEventSourceAccounts": {
  998. "input": {
  999. "type": "structure",
  1000. "required": [
  1001. "EventSourceName"
  1002. ],
  1003. "members": {
  1004. "EventSourceName": {},
  1005. "NextToken": {},
  1006. "Limit": {
  1007. "type": "integer"
  1008. }
  1009. }
  1010. },
  1011. "output": {
  1012. "type": "structure",
  1013. "members": {
  1014. "PartnerEventSourceAccounts": {
  1015. "type": "list",
  1016. "member": {
  1017. "type": "structure",
  1018. "members": {
  1019. "Account": {},
  1020. "CreationTime": {
  1021. "type": "timestamp"
  1022. },
  1023. "ExpirationTime": {
  1024. "type": "timestamp"
  1025. },
  1026. "State": {}
  1027. }
  1028. }
  1029. },
  1030. "NextToken": {}
  1031. }
  1032. }
  1033. },
  1034. "ListPartnerEventSources": {
  1035. "input": {
  1036. "type": "structure",
  1037. "required": [
  1038. "NamePrefix"
  1039. ],
  1040. "members": {
  1041. "NamePrefix": {},
  1042. "NextToken": {},
  1043. "Limit": {
  1044. "type": "integer"
  1045. }
  1046. }
  1047. },
  1048. "output": {
  1049. "type": "structure",
  1050. "members": {
  1051. "PartnerEventSources": {
  1052. "type": "list",
  1053. "member": {
  1054. "type": "structure",
  1055. "members": {
  1056. "Arn": {},
  1057. "Name": {}
  1058. }
  1059. }
  1060. },
  1061. "NextToken": {}
  1062. }
  1063. }
  1064. },
  1065. "ListReplays": {
  1066. "input": {
  1067. "type": "structure",
  1068. "members": {
  1069. "NamePrefix": {},
  1070. "State": {},
  1071. "EventSourceArn": {},
  1072. "NextToken": {},
  1073. "Limit": {
  1074. "type": "integer"
  1075. }
  1076. }
  1077. },
  1078. "output": {
  1079. "type": "structure",
  1080. "members": {
  1081. "Replays": {
  1082. "type": "list",
  1083. "member": {
  1084. "type": "structure",
  1085. "members": {
  1086. "ReplayName": {},
  1087. "EventSourceArn": {},
  1088. "State": {},
  1089. "StateReason": {},
  1090. "EventStartTime": {
  1091. "type": "timestamp"
  1092. },
  1093. "EventEndTime": {
  1094. "type": "timestamp"
  1095. },
  1096. "EventLastReplayedTime": {
  1097. "type": "timestamp"
  1098. },
  1099. "ReplayStartTime": {
  1100. "type": "timestamp"
  1101. },
  1102. "ReplayEndTime": {
  1103. "type": "timestamp"
  1104. }
  1105. }
  1106. }
  1107. },
  1108. "NextToken": {}
  1109. }
  1110. }
  1111. },
  1112. "ListRuleNamesByTarget": {
  1113. "input": {
  1114. "type": "structure",
  1115. "required": [
  1116. "TargetArn"
  1117. ],
  1118. "members": {
  1119. "TargetArn": {},
  1120. "EventBusName": {},
  1121. "NextToken": {},
  1122. "Limit": {
  1123. "type": "integer"
  1124. }
  1125. }
  1126. },
  1127. "output": {
  1128. "type": "structure",
  1129. "members": {
  1130. "RuleNames": {
  1131. "type": "list",
  1132. "member": {}
  1133. },
  1134. "NextToken": {}
  1135. }
  1136. }
  1137. },
  1138. "ListRules": {
  1139. "input": {
  1140. "type": "structure",
  1141. "members": {
  1142. "NamePrefix": {},
  1143. "EventBusName": {},
  1144. "NextToken": {},
  1145. "Limit": {
  1146. "type": "integer"
  1147. }
  1148. }
  1149. },
  1150. "output": {
  1151. "type": "structure",
  1152. "members": {
  1153. "Rules": {
  1154. "type": "list",
  1155. "member": {
  1156. "type": "structure",
  1157. "members": {
  1158. "Name": {},
  1159. "Arn": {},
  1160. "EventPattern": {},
  1161. "State": {},
  1162. "Description": {},
  1163. "ScheduleExpression": {},
  1164. "RoleArn": {},
  1165. "ManagedBy": {},
  1166. "EventBusName": {}
  1167. }
  1168. }
  1169. },
  1170. "NextToken": {}
  1171. }
  1172. }
  1173. },
  1174. "ListTagsForResource": {
  1175. "input": {
  1176. "type": "structure",
  1177. "required": [
  1178. "ResourceARN"
  1179. ],
  1180. "members": {
  1181. "ResourceARN": {}
  1182. }
  1183. },
  1184. "output": {
  1185. "type": "structure",
  1186. "members": {
  1187. "Tags": {
  1188. "shape": "S26"
  1189. }
  1190. }
  1191. }
  1192. },
  1193. "ListTargetsByRule": {
  1194. "input": {
  1195. "type": "structure",
  1196. "required": [
  1197. "Rule"
  1198. ],
  1199. "members": {
  1200. "Rule": {},
  1201. "EventBusName": {},
  1202. "NextToken": {},
  1203. "Limit": {
  1204. "type": "integer"
  1205. }
  1206. }
  1207. },
  1208. "output": {
  1209. "type": "structure",
  1210. "members": {
  1211. "Targets": {
  1212. "shape": "S5h"
  1213. },
  1214. "NextToken": {}
  1215. }
  1216. }
  1217. },
  1218. "PutEvents": {
  1219. "input": {
  1220. "type": "structure",
  1221. "required": [
  1222. "Entries"
  1223. ],
  1224. "members": {
  1225. "Entries": {
  1226. "type": "list",
  1227. "member": {
  1228. "type": "structure",
  1229. "members": {
  1230. "Time": {
  1231. "type": "timestamp"
  1232. },
  1233. "Source": {},
  1234. "Resources": {
  1235. "shape": "S7k"
  1236. },
  1237. "DetailType": {},
  1238. "Detail": {},
  1239. "EventBusName": {},
  1240. "TraceHeader": {}
  1241. }
  1242. }
  1243. },
  1244. "EndpointId": {
  1245. "contextParam": {
  1246. "name": "EndpointId"
  1247. }
  1248. }
  1249. }
  1250. },
  1251. "output": {
  1252. "type": "structure",
  1253. "members": {
  1254. "FailedEntryCount": {
  1255. "type": "integer"
  1256. },
  1257. "Entries": {
  1258. "type": "list",
  1259. "member": {
  1260. "type": "structure",
  1261. "members": {
  1262. "EventId": {},
  1263. "ErrorCode": {},
  1264. "ErrorMessage": {}
  1265. }
  1266. }
  1267. }
  1268. }
  1269. }
  1270. },
  1271. "PutPartnerEvents": {
  1272. "input": {
  1273. "type": "structure",
  1274. "required": [
  1275. "Entries"
  1276. ],
  1277. "members": {
  1278. "Entries": {
  1279. "type": "list",
  1280. "member": {
  1281. "type": "structure",
  1282. "members": {
  1283. "Time": {
  1284. "type": "timestamp"
  1285. },
  1286. "Source": {},
  1287. "Resources": {
  1288. "shape": "S7k"
  1289. },
  1290. "DetailType": {},
  1291. "Detail": {}
  1292. }
  1293. }
  1294. }
  1295. }
  1296. },
  1297. "output": {
  1298. "type": "structure",
  1299. "members": {
  1300. "FailedEntryCount": {
  1301. "type": "integer"
  1302. },
  1303. "Entries": {
  1304. "type": "list",
  1305. "member": {
  1306. "type": "structure",
  1307. "members": {
  1308. "EventId": {},
  1309. "ErrorCode": {},
  1310. "ErrorMessage": {}
  1311. }
  1312. }
  1313. }
  1314. }
  1315. }
  1316. },
  1317. "PutPermission": {
  1318. "input": {
  1319. "type": "structure",
  1320. "members": {
  1321. "EventBusName": {},
  1322. "Action": {},
  1323. "Principal": {},
  1324. "StatementId": {},
  1325. "Condition": {
  1326. "type": "structure",
  1327. "required": [
  1328. "Type",
  1329. "Key",
  1330. "Value"
  1331. ],
  1332. "members": {
  1333. "Type": {},
  1334. "Key": {},
  1335. "Value": {}
  1336. }
  1337. },
  1338. "Policy": {}
  1339. }
  1340. }
  1341. },
  1342. "PutRule": {
  1343. "input": {
  1344. "type": "structure",
  1345. "required": [
  1346. "Name"
  1347. ],
  1348. "members": {
  1349. "Name": {},
  1350. "ScheduleExpression": {},
  1351. "EventPattern": {},
  1352. "State": {},
  1353. "Description": {},
  1354. "RoleArn": {},
  1355. "Tags": {
  1356. "shape": "S26"
  1357. },
  1358. "EventBusName": {}
  1359. }
  1360. },
  1361. "output": {
  1362. "type": "structure",
  1363. "members": {
  1364. "RuleArn": {}
  1365. }
  1366. }
  1367. },
  1368. "PutTargets": {
  1369. "input": {
  1370. "type": "structure",
  1371. "required": [
  1372. "Rule",
  1373. "Targets"
  1374. ],
  1375. "members": {
  1376. "Rule": {},
  1377. "EventBusName": {},
  1378. "Targets": {
  1379. "shape": "S5h"
  1380. }
  1381. }
  1382. },
  1383. "output": {
  1384. "type": "structure",
  1385. "members": {
  1386. "FailedEntryCount": {
  1387. "type": "integer"
  1388. },
  1389. "FailedEntries": {
  1390. "type": "list",
  1391. "member": {
  1392. "type": "structure",
  1393. "members": {
  1394. "TargetId": {},
  1395. "ErrorCode": {},
  1396. "ErrorMessage": {}
  1397. }
  1398. }
  1399. }
  1400. }
  1401. }
  1402. },
  1403. "RemovePermission": {
  1404. "input": {
  1405. "type": "structure",
  1406. "members": {
  1407. "StatementId": {},
  1408. "RemoveAllPermissions": {
  1409. "type": "boolean"
  1410. },
  1411. "EventBusName": {}
  1412. }
  1413. }
  1414. },
  1415. "RemoveTargets": {
  1416. "input": {
  1417. "type": "structure",
  1418. "required": [
  1419. "Rule",
  1420. "Ids"
  1421. ],
  1422. "members": {
  1423. "Rule": {},
  1424. "EventBusName": {},
  1425. "Ids": {
  1426. "type": "list",
  1427. "member": {}
  1428. },
  1429. "Force": {
  1430. "type": "boolean"
  1431. }
  1432. }
  1433. },
  1434. "output": {
  1435. "type": "structure",
  1436. "members": {
  1437. "FailedEntryCount": {
  1438. "type": "integer"
  1439. },
  1440. "FailedEntries": {
  1441. "type": "list",
  1442. "member": {
  1443. "type": "structure",
  1444. "members": {
  1445. "TargetId": {},
  1446. "ErrorCode": {},
  1447. "ErrorMessage": {}
  1448. }
  1449. }
  1450. }
  1451. }
  1452. }
  1453. },
  1454. "StartReplay": {
  1455. "input": {
  1456. "type": "structure",
  1457. "required": [
  1458. "ReplayName",
  1459. "EventSourceArn",
  1460. "EventStartTime",
  1461. "EventEndTime",
  1462. "Destination"
  1463. ],
  1464. "members": {
  1465. "ReplayName": {},
  1466. "Description": {},
  1467. "EventSourceArn": {},
  1468. "EventStartTime": {
  1469. "type": "timestamp"
  1470. },
  1471. "EventEndTime": {
  1472. "type": "timestamp"
  1473. },
  1474. "Destination": {
  1475. "shape": "S3o"
  1476. }
  1477. }
  1478. },
  1479. "output": {
  1480. "type": "structure",
  1481. "members": {
  1482. "ReplayArn": {},
  1483. "State": {},
  1484. "StateReason": {},
  1485. "ReplayStartTime": {
  1486. "type": "timestamp"
  1487. }
  1488. }
  1489. }
  1490. },
  1491. "TagResource": {
  1492. "input": {
  1493. "type": "structure",
  1494. "required": [
  1495. "ResourceARN",
  1496. "Tags"
  1497. ],
  1498. "members": {
  1499. "ResourceARN": {},
  1500. "Tags": {
  1501. "shape": "S26"
  1502. }
  1503. }
  1504. },
  1505. "output": {
  1506. "type": "structure",
  1507. "members": {}
  1508. }
  1509. },
  1510. "TestEventPattern": {
  1511. "input": {
  1512. "type": "structure",
  1513. "required": [
  1514. "EventPattern",
  1515. "Event"
  1516. ],
  1517. "members": {
  1518. "EventPattern": {},
  1519. "Event": {}
  1520. }
  1521. },
  1522. "output": {
  1523. "type": "structure",
  1524. "members": {
  1525. "Result": {
  1526. "type": "boolean"
  1527. }
  1528. }
  1529. }
  1530. },
  1531. "UntagResource": {
  1532. "input": {
  1533. "type": "structure",
  1534. "required": [
  1535. "ResourceARN",
  1536. "TagKeys"
  1537. ],
  1538. "members": {
  1539. "ResourceARN": {},
  1540. "TagKeys": {
  1541. "type": "list",
  1542. "member": {}
  1543. }
  1544. }
  1545. },
  1546. "output": {
  1547. "type": "structure",
  1548. "members": {}
  1549. }
  1550. },
  1551. "UpdateApiDestination": {
  1552. "input": {
  1553. "type": "structure",
  1554. "required": [
  1555. "Name"
  1556. ],
  1557. "members": {
  1558. "Name": {},
  1559. "Description": {},
  1560. "ConnectionArn": {},
  1561. "InvocationEndpoint": {},
  1562. "HttpMethod": {},
  1563. "InvocationRateLimitPerSecond": {
  1564. "type": "integer"
  1565. }
  1566. }
  1567. },
  1568. "output": {
  1569. "type": "structure",
  1570. "members": {
  1571. "ApiDestinationArn": {},
  1572. "ApiDestinationState": {},
  1573. "CreationTime": {
  1574. "type": "timestamp"
  1575. },
  1576. "LastModifiedTime": {
  1577. "type": "timestamp"
  1578. }
  1579. }
  1580. }
  1581. },
  1582. "UpdateArchive": {
  1583. "input": {
  1584. "type": "structure",
  1585. "required": [
  1586. "ArchiveName"
  1587. ],
  1588. "members": {
  1589. "ArchiveName": {},
  1590. "Description": {},
  1591. "EventPattern": {},
  1592. "RetentionDays": {
  1593. "type": "integer"
  1594. }
  1595. }
  1596. },
  1597. "output": {
  1598. "type": "structure",
  1599. "members": {
  1600. "ArchiveArn": {},
  1601. "State": {},
  1602. "StateReason": {},
  1603. "CreationTime": {
  1604. "type": "timestamp"
  1605. }
  1606. }
  1607. }
  1608. },
  1609. "UpdateConnection": {
  1610. "input": {
  1611. "type": "structure",
  1612. "required": [
  1613. "Name"
  1614. ],
  1615. "members": {
  1616. "Name": {},
  1617. "Description": {},
  1618. "AuthorizationType": {},
  1619. "AuthParameters": {
  1620. "type": "structure",
  1621. "members": {
  1622. "BasicAuthParameters": {
  1623. "type": "structure",
  1624. "members": {
  1625. "Username": {},
  1626. "Password": {
  1627. "shape": "S11"
  1628. }
  1629. }
  1630. },
  1631. "OAuthParameters": {
  1632. "type": "structure",
  1633. "members": {
  1634. "ClientParameters": {
  1635. "type": "structure",
  1636. "members": {
  1637. "ClientID": {},
  1638. "ClientSecret": {
  1639. "shape": "S11"
  1640. }
  1641. }
  1642. },
  1643. "AuthorizationEndpoint": {},
  1644. "HttpMethod": {},
  1645. "OAuthHttpParameters": {
  1646. "shape": "S15"
  1647. }
  1648. }
  1649. },
  1650. "ApiKeyAuthParameters": {
  1651. "type": "structure",
  1652. "members": {
  1653. "ApiKeyName": {},
  1654. "ApiKeyValue": {
  1655. "shape": "S11"
  1656. }
  1657. }
  1658. },
  1659. "InvocationHttpParameters": {
  1660. "shape": "S15"
  1661. }
  1662. }
  1663. }
  1664. }
  1665. },
  1666. "output": {
  1667. "type": "structure",
  1668. "members": {
  1669. "ConnectionArn": {},
  1670. "ConnectionState": {},
  1671. "CreationTime": {
  1672. "type": "timestamp"
  1673. },
  1674. "LastModifiedTime": {
  1675. "type": "timestamp"
  1676. },
  1677. "LastAuthorizedTime": {
  1678. "type": "timestamp"
  1679. }
  1680. }
  1681. }
  1682. },
  1683. "UpdateEndpoint": {
  1684. "input": {
  1685. "type": "structure",
  1686. "required": [
  1687. "Name"
  1688. ],
  1689. "members": {
  1690. "Name": {},
  1691. "Description": {},
  1692. "RoutingConfig": {
  1693. "shape": "S1p"
  1694. },
  1695. "ReplicationConfig": {
  1696. "shape": "S1v"
  1697. },
  1698. "EventBuses": {
  1699. "shape": "S1x"
  1700. },
  1701. "RoleArn": {}
  1702. }
  1703. },
  1704. "output": {
  1705. "type": "structure",
  1706. "members": {
  1707. "Name": {},
  1708. "Arn": {},
  1709. "RoutingConfig": {
  1710. "shape": "S1p"
  1711. },
  1712. "ReplicationConfig": {
  1713. "shape": "S1v"
  1714. },
  1715. "EventBuses": {
  1716. "shape": "S1x"
  1717. },
  1718. "RoleArn": {},
  1719. "EndpointId": {},
  1720. "EndpointUrl": {},
  1721. "State": {}
  1722. }
  1723. }
  1724. }
  1725. },
  1726. "shapes": {
  1727. "S11": {
  1728. "type": "string",
  1729. "sensitive": true
  1730. },
  1731. "S15": {
  1732. "type": "structure",
  1733. "members": {
  1734. "HeaderParameters": {
  1735. "type": "list",
  1736. "member": {
  1737. "type": "structure",
  1738. "members": {
  1739. "Key": {},
  1740. "Value": {
  1741. "type": "string",
  1742. "sensitive": true
  1743. },
  1744. "IsValueSecret": {
  1745. "type": "boolean"
  1746. }
  1747. }
  1748. }
  1749. },
  1750. "QueryStringParameters": {
  1751. "type": "list",
  1752. "member": {
  1753. "type": "structure",
  1754. "members": {
  1755. "Key": {},
  1756. "Value": {
  1757. "type": "string",
  1758. "sensitive": true
  1759. },
  1760. "IsValueSecret": {
  1761. "type": "boolean"
  1762. }
  1763. }
  1764. }
  1765. },
  1766. "BodyParameters": {
  1767. "type": "list",
  1768. "member": {
  1769. "type": "structure",
  1770. "members": {
  1771. "Key": {},
  1772. "Value": {
  1773. "type": "string",
  1774. "sensitive": true
  1775. },
  1776. "IsValueSecret": {
  1777. "type": "boolean"
  1778. }
  1779. }
  1780. }
  1781. }
  1782. }
  1783. },
  1784. "S1p": {
  1785. "type": "structure",
  1786. "required": [
  1787. "FailoverConfig"
  1788. ],
  1789. "members": {
  1790. "FailoverConfig": {
  1791. "type": "structure",
  1792. "required": [
  1793. "Primary",
  1794. "Secondary"
  1795. ],
  1796. "members": {
  1797. "Primary": {
  1798. "type": "structure",
  1799. "required": [
  1800. "HealthCheck"
  1801. ],
  1802. "members": {
  1803. "HealthCheck": {}
  1804. }
  1805. },
  1806. "Secondary": {
  1807. "type": "structure",
  1808. "required": [
  1809. "Route"
  1810. ],
  1811. "members": {
  1812. "Route": {}
  1813. }
  1814. }
  1815. }
  1816. }
  1817. }
  1818. },
  1819. "S1v": {
  1820. "type": "structure",
  1821. "members": {
  1822. "State": {}
  1823. }
  1824. },
  1825. "S1x": {
  1826. "type": "list",
  1827. "member": {
  1828. "type": "structure",
  1829. "required": [
  1830. "EventBusArn"
  1831. ],
  1832. "members": {
  1833. "EventBusArn": {}
  1834. }
  1835. }
  1836. },
  1837. "S26": {
  1838. "type": "list",
  1839. "member": {
  1840. "type": "structure",
  1841. "required": [
  1842. "Key",
  1843. "Value"
  1844. ],
  1845. "members": {
  1846. "Key": {},
  1847. "Value": {}
  1848. }
  1849. }
  1850. },
  1851. "S3o": {
  1852. "type": "structure",
  1853. "required": [
  1854. "Arn"
  1855. ],
  1856. "members": {
  1857. "Arn": {},
  1858. "FilterArns": {
  1859. "type": "list",
  1860. "member": {}
  1861. }
  1862. }
  1863. },
  1864. "S5h": {
  1865. "type": "list",
  1866. "member": {
  1867. "type": "structure",
  1868. "required": [
  1869. "Id",
  1870. "Arn"
  1871. ],
  1872. "members": {
  1873. "Id": {},
  1874. "Arn": {},
  1875. "RoleArn": {},
  1876. "Input": {},
  1877. "InputPath": {},
  1878. "InputTransformer": {
  1879. "type": "structure",
  1880. "required": [
  1881. "InputTemplate"
  1882. ],
  1883. "members": {
  1884. "InputPathsMap": {
  1885. "type": "map",
  1886. "key": {},
  1887. "value": {}
  1888. },
  1889. "InputTemplate": {}
  1890. }
  1891. },
  1892. "KinesisParameters": {
  1893. "type": "structure",
  1894. "required": [
  1895. "PartitionKeyPath"
  1896. ],
  1897. "members": {
  1898. "PartitionKeyPath": {}
  1899. }
  1900. },
  1901. "RunCommandParameters": {
  1902. "type": "structure",
  1903. "required": [
  1904. "RunCommandTargets"
  1905. ],
  1906. "members": {
  1907. "RunCommandTargets": {
  1908. "type": "list",
  1909. "member": {
  1910. "type": "structure",
  1911. "required": [
  1912. "Key",
  1913. "Values"
  1914. ],
  1915. "members": {
  1916. "Key": {},
  1917. "Values": {
  1918. "type": "list",
  1919. "member": {}
  1920. }
  1921. }
  1922. }
  1923. }
  1924. }
  1925. },
  1926. "EcsParameters": {
  1927. "type": "structure",
  1928. "required": [
  1929. "TaskDefinitionArn"
  1930. ],
  1931. "members": {
  1932. "TaskDefinitionArn": {},
  1933. "TaskCount": {
  1934. "type": "integer"
  1935. },
  1936. "LaunchType": {},
  1937. "NetworkConfiguration": {
  1938. "type": "structure",
  1939. "members": {
  1940. "awsvpcConfiguration": {
  1941. "type": "structure",
  1942. "required": [
  1943. "Subnets"
  1944. ],
  1945. "members": {
  1946. "Subnets": {
  1947. "shape": "S63"
  1948. },
  1949. "SecurityGroups": {
  1950. "shape": "S63"
  1951. },
  1952. "AssignPublicIp": {}
  1953. }
  1954. }
  1955. }
  1956. },
  1957. "PlatformVersion": {},
  1958. "Group": {},
  1959. "CapacityProviderStrategy": {
  1960. "type": "list",
  1961. "member": {
  1962. "type": "structure",
  1963. "required": [
  1964. "capacityProvider"
  1965. ],
  1966. "members": {
  1967. "capacityProvider": {},
  1968. "weight": {
  1969. "type": "integer"
  1970. },
  1971. "base": {
  1972. "type": "integer"
  1973. }
  1974. }
  1975. }
  1976. },
  1977. "EnableECSManagedTags": {
  1978. "type": "boolean"
  1979. },
  1980. "EnableExecuteCommand": {
  1981. "type": "boolean"
  1982. },
  1983. "PlacementConstraints": {
  1984. "type": "list",
  1985. "member": {
  1986. "type": "structure",
  1987. "members": {
  1988. "type": {},
  1989. "expression": {}
  1990. }
  1991. }
  1992. },
  1993. "PlacementStrategy": {
  1994. "type": "list",
  1995. "member": {
  1996. "type": "structure",
  1997. "members": {
  1998. "type": {},
  1999. "field": {}
  2000. }
  2001. }
  2002. },
  2003. "PropagateTags": {},
  2004. "ReferenceId": {},
  2005. "Tags": {
  2006. "shape": "S26"
  2007. }
  2008. }
  2009. },
  2010. "BatchParameters": {
  2011. "type": "structure",
  2012. "required": [
  2013. "JobDefinition",
  2014. "JobName"
  2015. ],
  2016. "members": {
  2017. "JobDefinition": {},
  2018. "JobName": {},
  2019. "ArrayProperties": {
  2020. "type": "structure",
  2021. "members": {
  2022. "Size": {
  2023. "type": "integer"
  2024. }
  2025. }
  2026. },
  2027. "RetryStrategy": {
  2028. "type": "structure",
  2029. "members": {
  2030. "Attempts": {
  2031. "type": "integer"
  2032. }
  2033. }
  2034. }
  2035. }
  2036. },
  2037. "SqsParameters": {
  2038. "type": "structure",
  2039. "members": {
  2040. "MessageGroupId": {}
  2041. }
  2042. },
  2043. "HttpParameters": {
  2044. "type": "structure",
  2045. "members": {
  2046. "PathParameterValues": {
  2047. "type": "list",
  2048. "member": {}
  2049. },
  2050. "HeaderParameters": {
  2051. "type": "map",
  2052. "key": {},
  2053. "value": {}
  2054. },
  2055. "QueryStringParameters": {
  2056. "type": "map",
  2057. "key": {},
  2058. "value": {}
  2059. }
  2060. }
  2061. },
  2062. "RedshiftDataParameters": {
  2063. "type": "structure",
  2064. "required": [
  2065. "Database"
  2066. ],
  2067. "members": {
  2068. "SecretManagerArn": {},
  2069. "Database": {},
  2070. "DbUser": {},
  2071. "Sql": {
  2072. "shape": "S71"
  2073. },
  2074. "StatementName": {},
  2075. "WithEvent": {
  2076. "type": "boolean"
  2077. },
  2078. "Sqls": {
  2079. "type": "list",
  2080. "member": {
  2081. "shape": "S71"
  2082. },
  2083. "sensitive": true
  2084. }
  2085. }
  2086. },
  2087. "SageMakerPipelineParameters": {
  2088. "type": "structure",
  2089. "members": {
  2090. "PipelineParameterList": {
  2091. "type": "list",
  2092. "member": {
  2093. "type": "structure",
  2094. "required": [
  2095. "Name",
  2096. "Value"
  2097. ],
  2098. "members": {
  2099. "Name": {},
  2100. "Value": {}
  2101. }
  2102. }
  2103. }
  2104. }
  2105. },
  2106. "DeadLetterConfig": {
  2107. "type": "structure",
  2108. "members": {
  2109. "Arn": {}
  2110. }
  2111. },
  2112. "RetryPolicy": {
  2113. "type": "structure",
  2114. "members": {
  2115. "MaximumRetryAttempts": {
  2116. "type": "integer"
  2117. },
  2118. "MaximumEventAgeInSeconds": {
  2119. "type": "integer"
  2120. }
  2121. }
  2122. },
  2123. "AppSyncParameters": {
  2124. "type": "structure",
  2125. "members": {
  2126. "GraphQLOperation": {
  2127. "type": "string",
  2128. "sensitive": true
  2129. }
  2130. }
  2131. }
  2132. }
  2133. }
  2134. },
  2135. "S63": {
  2136. "type": "list",
  2137. "member": {}
  2138. },
  2139. "S71": {
  2140. "type": "string",
  2141. "sensitive": true
  2142. },
  2143. "S7k": {
  2144. "type": "list",
  2145. "member": {}
  2146. }
  2147. }
  2148. }