ce-2017-10-25.min.json 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2017-10-25",
  5. "endpointPrefix": "ce",
  6. "jsonVersion": "1.1",
  7. "protocol": "json",
  8. "serviceAbbreviation": "AWS Cost Explorer",
  9. "serviceFullName": "AWS Cost Explorer Service",
  10. "serviceId": "Cost Explorer",
  11. "signatureVersion": "v4",
  12. "signingName": "ce",
  13. "targetPrefix": "AWSInsightsIndexService",
  14. "uid": "ce-2017-10-25"
  15. },
  16. "operations": {
  17. "CreateAnomalyMonitor": {
  18. "input": {
  19. "type": "structure",
  20. "required": [
  21. "AnomalyMonitor"
  22. ],
  23. "members": {
  24. "AnomalyMonitor": {
  25. "shape": "S2"
  26. },
  27. "ResourceTags": {
  28. "shape": "Sk"
  29. }
  30. }
  31. },
  32. "output": {
  33. "type": "structure",
  34. "required": [
  35. "MonitorArn"
  36. ],
  37. "members": {
  38. "MonitorArn": {}
  39. }
  40. }
  41. },
  42. "CreateAnomalySubscription": {
  43. "input": {
  44. "type": "structure",
  45. "required": [
  46. "AnomalySubscription"
  47. ],
  48. "members": {
  49. "AnomalySubscription": {
  50. "shape": "Sq"
  51. },
  52. "ResourceTags": {
  53. "shape": "Sk"
  54. }
  55. }
  56. },
  57. "output": {
  58. "type": "structure",
  59. "required": [
  60. "SubscriptionArn"
  61. ],
  62. "members": {
  63. "SubscriptionArn": {}
  64. }
  65. }
  66. },
  67. "CreateCostCategoryDefinition": {
  68. "input": {
  69. "type": "structure",
  70. "required": [
  71. "Name",
  72. "RuleVersion",
  73. "Rules"
  74. ],
  75. "members": {
  76. "Name": {},
  77. "EffectiveStart": {},
  78. "RuleVersion": {},
  79. "Rules": {
  80. "shape": "S14"
  81. },
  82. "DefaultValue": {},
  83. "SplitChargeRules": {
  84. "shape": "S1a"
  85. },
  86. "ResourceTags": {
  87. "shape": "Sk"
  88. }
  89. }
  90. },
  91. "output": {
  92. "type": "structure",
  93. "members": {
  94. "CostCategoryArn": {},
  95. "EffectiveStart": {}
  96. }
  97. }
  98. },
  99. "DeleteAnomalyMonitor": {
  100. "input": {
  101. "type": "structure",
  102. "required": [
  103. "MonitorArn"
  104. ],
  105. "members": {
  106. "MonitorArn": {}
  107. }
  108. },
  109. "output": {
  110. "type": "structure",
  111. "members": {}
  112. }
  113. },
  114. "DeleteAnomalySubscription": {
  115. "input": {
  116. "type": "structure",
  117. "required": [
  118. "SubscriptionArn"
  119. ],
  120. "members": {
  121. "SubscriptionArn": {}
  122. }
  123. },
  124. "output": {
  125. "type": "structure",
  126. "members": {}
  127. }
  128. },
  129. "DeleteCostCategoryDefinition": {
  130. "input": {
  131. "type": "structure",
  132. "required": [
  133. "CostCategoryArn"
  134. ],
  135. "members": {
  136. "CostCategoryArn": {}
  137. }
  138. },
  139. "output": {
  140. "type": "structure",
  141. "members": {
  142. "CostCategoryArn": {},
  143. "EffectiveEnd": {}
  144. }
  145. }
  146. },
  147. "DescribeCostCategoryDefinition": {
  148. "input": {
  149. "type": "structure",
  150. "required": [
  151. "CostCategoryArn"
  152. ],
  153. "members": {
  154. "CostCategoryArn": {},
  155. "EffectiveOn": {}
  156. }
  157. },
  158. "output": {
  159. "type": "structure",
  160. "members": {
  161. "CostCategory": {
  162. "type": "structure",
  163. "required": [
  164. "CostCategoryArn",
  165. "EffectiveStart",
  166. "Name",
  167. "RuleVersion",
  168. "Rules"
  169. ],
  170. "members": {
  171. "CostCategoryArn": {},
  172. "EffectiveStart": {},
  173. "EffectiveEnd": {},
  174. "Name": {},
  175. "RuleVersion": {},
  176. "Rules": {
  177. "shape": "S14"
  178. },
  179. "SplitChargeRules": {
  180. "shape": "S1a"
  181. },
  182. "ProcessingStatus": {
  183. "shape": "S1s"
  184. },
  185. "DefaultValue": {}
  186. }
  187. }
  188. }
  189. }
  190. },
  191. "GetAnomalies": {
  192. "input": {
  193. "type": "structure",
  194. "required": [
  195. "DateInterval"
  196. ],
  197. "members": {
  198. "MonitorArn": {},
  199. "DateInterval": {
  200. "type": "structure",
  201. "required": [
  202. "StartDate"
  203. ],
  204. "members": {
  205. "StartDate": {},
  206. "EndDate": {}
  207. }
  208. },
  209. "Feedback": {},
  210. "TotalImpact": {
  211. "type": "structure",
  212. "required": [
  213. "NumericOperator",
  214. "StartValue"
  215. ],
  216. "members": {
  217. "NumericOperator": {},
  218. "StartValue": {
  219. "type": "double"
  220. },
  221. "EndValue": {
  222. "type": "double"
  223. }
  224. }
  225. },
  226. "NextPageToken": {},
  227. "MaxResults": {
  228. "type": "integer"
  229. }
  230. }
  231. },
  232. "output": {
  233. "type": "structure",
  234. "required": [
  235. "Anomalies"
  236. ],
  237. "members": {
  238. "Anomalies": {
  239. "type": "list",
  240. "member": {
  241. "type": "structure",
  242. "required": [
  243. "AnomalyId",
  244. "AnomalyScore",
  245. "Impact",
  246. "MonitorArn"
  247. ],
  248. "members": {
  249. "AnomalyId": {},
  250. "AnomalyStartDate": {},
  251. "AnomalyEndDate": {},
  252. "DimensionValue": {},
  253. "RootCauses": {
  254. "type": "list",
  255. "member": {
  256. "type": "structure",
  257. "members": {
  258. "Service": {},
  259. "Region": {},
  260. "LinkedAccount": {},
  261. "UsageType": {},
  262. "LinkedAccountName": {}
  263. }
  264. }
  265. },
  266. "AnomalyScore": {
  267. "type": "structure",
  268. "required": [
  269. "MaxScore",
  270. "CurrentScore"
  271. ],
  272. "members": {
  273. "MaxScore": {
  274. "type": "double"
  275. },
  276. "CurrentScore": {
  277. "type": "double"
  278. }
  279. }
  280. },
  281. "Impact": {
  282. "type": "structure",
  283. "required": [
  284. "MaxImpact"
  285. ],
  286. "members": {
  287. "MaxImpact": {
  288. "type": "double"
  289. },
  290. "TotalImpact": {
  291. "type": "double"
  292. },
  293. "TotalActualSpend": {
  294. "type": "double"
  295. },
  296. "TotalExpectedSpend": {
  297. "type": "double"
  298. },
  299. "TotalImpactPercentage": {
  300. "type": "double"
  301. }
  302. }
  303. },
  304. "MonitorArn": {},
  305. "Feedback": {}
  306. }
  307. }
  308. },
  309. "NextPageToken": {}
  310. }
  311. }
  312. },
  313. "GetAnomalyMonitors": {
  314. "input": {
  315. "type": "structure",
  316. "members": {
  317. "MonitorArnList": {
  318. "shape": "Sb"
  319. },
  320. "NextPageToken": {},
  321. "MaxResults": {
  322. "type": "integer"
  323. }
  324. }
  325. },
  326. "output": {
  327. "type": "structure",
  328. "required": [
  329. "AnomalyMonitors"
  330. ],
  331. "members": {
  332. "AnomalyMonitors": {
  333. "type": "list",
  334. "member": {
  335. "shape": "S2"
  336. }
  337. },
  338. "NextPageToken": {}
  339. }
  340. }
  341. },
  342. "GetAnomalySubscriptions": {
  343. "input": {
  344. "type": "structure",
  345. "members": {
  346. "SubscriptionArnList": {
  347. "shape": "Sb"
  348. },
  349. "MonitorArn": {},
  350. "NextPageToken": {},
  351. "MaxResults": {
  352. "type": "integer"
  353. }
  354. }
  355. },
  356. "output": {
  357. "type": "structure",
  358. "required": [
  359. "AnomalySubscriptions"
  360. ],
  361. "members": {
  362. "AnomalySubscriptions": {
  363. "type": "list",
  364. "member": {
  365. "shape": "Sq"
  366. }
  367. },
  368. "NextPageToken": {}
  369. }
  370. }
  371. },
  372. "GetApproximateUsageRecords": {
  373. "input": {
  374. "type": "structure",
  375. "required": [
  376. "Granularity",
  377. "ApproximationDimension"
  378. ],
  379. "members": {
  380. "Granularity": {},
  381. "Services": {
  382. "type": "list",
  383. "member": {}
  384. },
  385. "ApproximationDimension": {}
  386. }
  387. },
  388. "output": {
  389. "type": "structure",
  390. "members": {
  391. "Services": {
  392. "type": "map",
  393. "key": {},
  394. "value": {
  395. "type": "long"
  396. }
  397. },
  398. "TotalRecords": {
  399. "type": "long"
  400. },
  401. "LookbackPeriod": {
  402. "shape": "S2o"
  403. }
  404. }
  405. }
  406. },
  407. "GetCostAndUsage": {
  408. "input": {
  409. "type": "structure",
  410. "required": [
  411. "TimePeriod",
  412. "Granularity",
  413. "Metrics"
  414. ],
  415. "members": {
  416. "TimePeriod": {
  417. "shape": "S2o"
  418. },
  419. "Granularity": {},
  420. "Filter": {
  421. "shape": "S7"
  422. },
  423. "Metrics": {
  424. "shape": "S2q"
  425. },
  426. "GroupBy": {
  427. "shape": "S2s"
  428. },
  429. "NextPageToken": {}
  430. }
  431. },
  432. "output": {
  433. "type": "structure",
  434. "members": {
  435. "NextPageToken": {},
  436. "GroupDefinitions": {
  437. "shape": "S2s"
  438. },
  439. "ResultsByTime": {
  440. "shape": "S2x"
  441. },
  442. "DimensionValueAttributes": {
  443. "shape": "S38"
  444. }
  445. }
  446. }
  447. },
  448. "GetCostAndUsageWithResources": {
  449. "input": {
  450. "type": "structure",
  451. "required": [
  452. "TimePeriod",
  453. "Granularity",
  454. "Filter"
  455. ],
  456. "members": {
  457. "TimePeriod": {
  458. "shape": "S2o"
  459. },
  460. "Granularity": {},
  461. "Filter": {
  462. "shape": "S7"
  463. },
  464. "Metrics": {
  465. "shape": "S2q"
  466. },
  467. "GroupBy": {
  468. "shape": "S2s"
  469. },
  470. "NextPageToken": {}
  471. }
  472. },
  473. "output": {
  474. "type": "structure",
  475. "members": {
  476. "NextPageToken": {},
  477. "GroupDefinitions": {
  478. "shape": "S2s"
  479. },
  480. "ResultsByTime": {
  481. "shape": "S2x"
  482. },
  483. "DimensionValueAttributes": {
  484. "shape": "S38"
  485. }
  486. }
  487. }
  488. },
  489. "GetCostCategories": {
  490. "input": {
  491. "type": "structure",
  492. "required": [
  493. "TimePeriod"
  494. ],
  495. "members": {
  496. "SearchString": {},
  497. "TimePeriod": {
  498. "shape": "S2o"
  499. },
  500. "CostCategoryName": {},
  501. "Filter": {
  502. "shape": "S7"
  503. },
  504. "SortBy": {
  505. "shape": "S3h"
  506. },
  507. "MaxResults": {
  508. "type": "integer"
  509. },
  510. "NextPageToken": {}
  511. }
  512. },
  513. "output": {
  514. "type": "structure",
  515. "required": [
  516. "ReturnSize",
  517. "TotalSize"
  518. ],
  519. "members": {
  520. "NextPageToken": {},
  521. "CostCategoryNames": {
  522. "type": "list",
  523. "member": {}
  524. },
  525. "CostCategoryValues": {
  526. "shape": "S3o"
  527. },
  528. "ReturnSize": {
  529. "type": "integer"
  530. },
  531. "TotalSize": {
  532. "type": "integer"
  533. }
  534. }
  535. }
  536. },
  537. "GetCostForecast": {
  538. "input": {
  539. "type": "structure",
  540. "required": [
  541. "TimePeriod",
  542. "Metric",
  543. "Granularity"
  544. ],
  545. "members": {
  546. "TimePeriod": {
  547. "shape": "S2o"
  548. },
  549. "Metric": {},
  550. "Granularity": {},
  551. "Filter": {
  552. "shape": "S7"
  553. },
  554. "PredictionIntervalLevel": {
  555. "type": "integer"
  556. }
  557. }
  558. },
  559. "output": {
  560. "type": "structure",
  561. "members": {
  562. "Total": {
  563. "shape": "S30"
  564. },
  565. "ForecastResultsByTime": {
  566. "shape": "S3t"
  567. }
  568. }
  569. }
  570. },
  571. "GetDimensionValues": {
  572. "input": {
  573. "type": "structure",
  574. "required": [
  575. "TimePeriod",
  576. "Dimension"
  577. ],
  578. "members": {
  579. "SearchString": {},
  580. "TimePeriod": {
  581. "shape": "S2o"
  582. },
  583. "Dimension": {},
  584. "Context": {},
  585. "Filter": {
  586. "shape": "S7"
  587. },
  588. "SortBy": {
  589. "shape": "S3h"
  590. },
  591. "MaxResults": {
  592. "type": "integer"
  593. },
  594. "NextPageToken": {}
  595. }
  596. },
  597. "output": {
  598. "type": "structure",
  599. "required": [
  600. "DimensionValues",
  601. "ReturnSize",
  602. "TotalSize"
  603. ],
  604. "members": {
  605. "DimensionValues": {
  606. "shape": "S38"
  607. },
  608. "ReturnSize": {
  609. "type": "integer"
  610. },
  611. "TotalSize": {
  612. "type": "integer"
  613. },
  614. "NextPageToken": {}
  615. }
  616. }
  617. },
  618. "GetReservationCoverage": {
  619. "input": {
  620. "type": "structure",
  621. "required": [
  622. "TimePeriod"
  623. ],
  624. "members": {
  625. "TimePeriod": {
  626. "shape": "S2o"
  627. },
  628. "GroupBy": {
  629. "shape": "S2s"
  630. },
  631. "Granularity": {},
  632. "Filter": {
  633. "shape": "S7"
  634. },
  635. "Metrics": {
  636. "shape": "S2q"
  637. },
  638. "NextPageToken": {},
  639. "SortBy": {
  640. "shape": "S3i"
  641. },
  642. "MaxResults": {
  643. "type": "integer"
  644. }
  645. }
  646. },
  647. "output": {
  648. "type": "structure",
  649. "required": [
  650. "CoveragesByTime"
  651. ],
  652. "members": {
  653. "CoveragesByTime": {
  654. "type": "list",
  655. "member": {
  656. "type": "structure",
  657. "members": {
  658. "TimePeriod": {
  659. "shape": "S2o"
  660. },
  661. "Groups": {
  662. "type": "list",
  663. "member": {
  664. "type": "structure",
  665. "members": {
  666. "Attributes": {
  667. "shape": "S3a"
  668. },
  669. "Coverage": {
  670. "shape": "S44"
  671. }
  672. }
  673. }
  674. },
  675. "Total": {
  676. "shape": "S44"
  677. }
  678. }
  679. }
  680. },
  681. "Total": {
  682. "shape": "S44"
  683. },
  684. "NextPageToken": {}
  685. }
  686. }
  687. },
  688. "GetReservationPurchaseRecommendation": {
  689. "input": {
  690. "type": "structure",
  691. "required": [
  692. "Service"
  693. ],
  694. "members": {
  695. "AccountId": {},
  696. "Service": {},
  697. "Filter": {
  698. "shape": "S7"
  699. },
  700. "AccountScope": {},
  701. "LookbackPeriodInDays": {},
  702. "TermInYears": {},
  703. "PaymentOption": {},
  704. "ServiceSpecification": {
  705. "shape": "S4m"
  706. },
  707. "PageSize": {
  708. "type": "integer"
  709. },
  710. "NextPageToken": {}
  711. }
  712. },
  713. "output": {
  714. "type": "structure",
  715. "members": {
  716. "Metadata": {
  717. "type": "structure",
  718. "members": {
  719. "RecommendationId": {},
  720. "GenerationTimestamp": {},
  721. "AdditionalMetadata": {}
  722. }
  723. },
  724. "Recommendations": {
  725. "type": "list",
  726. "member": {
  727. "type": "structure",
  728. "members": {
  729. "AccountScope": {},
  730. "LookbackPeriodInDays": {},
  731. "TermInYears": {},
  732. "PaymentOption": {},
  733. "ServiceSpecification": {
  734. "shape": "S4m"
  735. },
  736. "RecommendationDetails": {
  737. "type": "list",
  738. "member": {
  739. "type": "structure",
  740. "members": {
  741. "AccountId": {},
  742. "InstanceDetails": {
  743. "type": "structure",
  744. "members": {
  745. "EC2InstanceDetails": {
  746. "type": "structure",
  747. "members": {
  748. "Family": {},
  749. "InstanceType": {},
  750. "Region": {},
  751. "AvailabilityZone": {},
  752. "Platform": {},
  753. "Tenancy": {},
  754. "CurrentGeneration": {
  755. "type": "boolean"
  756. },
  757. "SizeFlexEligible": {
  758. "type": "boolean"
  759. }
  760. }
  761. },
  762. "RDSInstanceDetails": {
  763. "type": "structure",
  764. "members": {
  765. "Family": {},
  766. "InstanceType": {},
  767. "Region": {},
  768. "DatabaseEngine": {},
  769. "DatabaseEdition": {},
  770. "DeploymentOption": {},
  771. "LicenseModel": {},
  772. "CurrentGeneration": {
  773. "type": "boolean"
  774. },
  775. "SizeFlexEligible": {
  776. "type": "boolean"
  777. }
  778. }
  779. },
  780. "RedshiftInstanceDetails": {
  781. "type": "structure",
  782. "members": {
  783. "Family": {},
  784. "NodeType": {},
  785. "Region": {},
  786. "CurrentGeneration": {
  787. "type": "boolean"
  788. },
  789. "SizeFlexEligible": {
  790. "type": "boolean"
  791. }
  792. }
  793. },
  794. "ElastiCacheInstanceDetails": {
  795. "type": "structure",
  796. "members": {
  797. "Family": {},
  798. "NodeType": {},
  799. "Region": {},
  800. "ProductDescription": {},
  801. "CurrentGeneration": {
  802. "type": "boolean"
  803. },
  804. "SizeFlexEligible": {
  805. "type": "boolean"
  806. }
  807. }
  808. },
  809. "ESInstanceDetails": {
  810. "type": "structure",
  811. "members": {
  812. "InstanceClass": {},
  813. "InstanceSize": {},
  814. "Region": {},
  815. "CurrentGeneration": {
  816. "type": "boolean"
  817. },
  818. "SizeFlexEligible": {
  819. "type": "boolean"
  820. }
  821. }
  822. },
  823. "MemoryDBInstanceDetails": {
  824. "type": "structure",
  825. "members": {
  826. "Family": {},
  827. "NodeType": {},
  828. "Region": {},
  829. "CurrentGeneration": {
  830. "type": "boolean"
  831. },
  832. "SizeFlexEligible": {
  833. "type": "boolean"
  834. }
  835. }
  836. }
  837. }
  838. },
  839. "RecommendedNumberOfInstancesToPurchase": {},
  840. "RecommendedNormalizedUnitsToPurchase": {},
  841. "MinimumNumberOfInstancesUsedPerHour": {},
  842. "MinimumNormalizedUnitsUsedPerHour": {},
  843. "MaximumNumberOfInstancesUsedPerHour": {},
  844. "MaximumNormalizedUnitsUsedPerHour": {},
  845. "AverageNumberOfInstancesUsedPerHour": {},
  846. "AverageNormalizedUnitsUsedPerHour": {},
  847. "AverageUtilization": {},
  848. "EstimatedBreakEvenInMonths": {},
  849. "CurrencyCode": {},
  850. "EstimatedMonthlySavingsAmount": {},
  851. "EstimatedMonthlySavingsPercentage": {},
  852. "EstimatedMonthlyOnDemandCost": {},
  853. "EstimatedReservationCostForLookbackPeriod": {},
  854. "UpfrontCost": {},
  855. "RecurringStandardMonthlyCost": {}
  856. }
  857. }
  858. },
  859. "RecommendationSummary": {
  860. "type": "structure",
  861. "members": {
  862. "TotalEstimatedMonthlySavingsAmount": {},
  863. "TotalEstimatedMonthlySavingsPercentage": {},
  864. "CurrencyCode": {}
  865. }
  866. }
  867. }
  868. }
  869. },
  870. "NextPageToken": {}
  871. }
  872. }
  873. },
  874. "GetReservationUtilization": {
  875. "input": {
  876. "type": "structure",
  877. "required": [
  878. "TimePeriod"
  879. ],
  880. "members": {
  881. "TimePeriod": {
  882. "shape": "S2o"
  883. },
  884. "GroupBy": {
  885. "shape": "S2s"
  886. },
  887. "Granularity": {},
  888. "Filter": {
  889. "shape": "S7"
  890. },
  891. "SortBy": {
  892. "shape": "S3i"
  893. },
  894. "NextPageToken": {},
  895. "MaxResults": {
  896. "type": "integer"
  897. }
  898. }
  899. },
  900. "output": {
  901. "type": "structure",
  902. "required": [
  903. "UtilizationsByTime"
  904. ],
  905. "members": {
  906. "UtilizationsByTime": {
  907. "type": "list",
  908. "member": {
  909. "type": "structure",
  910. "members": {
  911. "TimePeriod": {
  912. "shape": "S2o"
  913. },
  914. "Groups": {
  915. "type": "list",
  916. "member": {
  917. "type": "structure",
  918. "members": {
  919. "Key": {},
  920. "Value": {},
  921. "Attributes": {
  922. "shape": "S3a"
  923. },
  924. "Utilization": {
  925. "shape": "S5c"
  926. }
  927. }
  928. }
  929. },
  930. "Total": {
  931. "shape": "S5c"
  932. }
  933. }
  934. }
  935. },
  936. "Total": {
  937. "shape": "S5c"
  938. },
  939. "NextPageToken": {}
  940. }
  941. }
  942. },
  943. "GetRightsizingRecommendation": {
  944. "input": {
  945. "type": "structure",
  946. "required": [
  947. "Service"
  948. ],
  949. "members": {
  950. "Filter": {
  951. "shape": "S7"
  952. },
  953. "Configuration": {
  954. "shape": "S5v"
  955. },
  956. "Service": {},
  957. "PageSize": {
  958. "type": "integer"
  959. },
  960. "NextPageToken": {}
  961. }
  962. },
  963. "output": {
  964. "type": "structure",
  965. "members": {
  966. "Metadata": {
  967. "type": "structure",
  968. "members": {
  969. "RecommendationId": {},
  970. "GenerationTimestamp": {},
  971. "LookbackPeriodInDays": {},
  972. "AdditionalMetadata": {}
  973. }
  974. },
  975. "Summary": {
  976. "type": "structure",
  977. "members": {
  978. "TotalRecommendationCount": {},
  979. "EstimatedTotalMonthlySavingsAmount": {},
  980. "SavingsCurrencyCode": {},
  981. "SavingsPercentage": {}
  982. }
  983. },
  984. "RightsizingRecommendations": {
  985. "type": "list",
  986. "member": {
  987. "type": "structure",
  988. "members": {
  989. "AccountId": {},
  990. "CurrentInstance": {
  991. "type": "structure",
  992. "members": {
  993. "ResourceId": {},
  994. "InstanceName": {},
  995. "Tags": {
  996. "type": "list",
  997. "member": {
  998. "shape": "Sf"
  999. }
  1000. },
  1001. "ResourceDetails": {
  1002. "shape": "S64"
  1003. },
  1004. "ResourceUtilization": {
  1005. "shape": "S66"
  1006. },
  1007. "ReservationCoveredHoursInLookbackPeriod": {},
  1008. "SavingsPlansCoveredHoursInLookbackPeriod": {},
  1009. "OnDemandHoursInLookbackPeriod": {},
  1010. "TotalRunningHoursInLookbackPeriod": {},
  1011. "MonthlyCost": {},
  1012. "CurrencyCode": {}
  1013. }
  1014. },
  1015. "RightsizingType": {},
  1016. "ModifyRecommendationDetail": {
  1017. "type": "structure",
  1018. "members": {
  1019. "TargetInstances": {
  1020. "type": "list",
  1021. "member": {
  1022. "type": "structure",
  1023. "members": {
  1024. "EstimatedMonthlyCost": {},
  1025. "EstimatedMonthlySavings": {},
  1026. "CurrencyCode": {},
  1027. "DefaultTargetInstance": {
  1028. "type": "boolean"
  1029. },
  1030. "ResourceDetails": {
  1031. "shape": "S64"
  1032. },
  1033. "ExpectedResourceUtilization": {
  1034. "shape": "S66"
  1035. },
  1036. "PlatformDifferences": {
  1037. "type": "list",
  1038. "member": {}
  1039. }
  1040. }
  1041. }
  1042. }
  1043. }
  1044. },
  1045. "TerminateRecommendationDetail": {
  1046. "type": "structure",
  1047. "members": {
  1048. "EstimatedMonthlySavings": {},
  1049. "CurrencyCode": {}
  1050. }
  1051. },
  1052. "FindingReasonCodes": {
  1053. "type": "list",
  1054. "member": {}
  1055. }
  1056. }
  1057. }
  1058. },
  1059. "NextPageToken": {},
  1060. "Configuration": {
  1061. "shape": "S5v"
  1062. }
  1063. }
  1064. }
  1065. },
  1066. "GetSavingsPlanPurchaseRecommendationDetails": {
  1067. "input": {
  1068. "type": "structure",
  1069. "required": [
  1070. "RecommendationDetailId"
  1071. ],
  1072. "members": {
  1073. "RecommendationDetailId": {}
  1074. }
  1075. },
  1076. "output": {
  1077. "type": "structure",
  1078. "members": {
  1079. "RecommendationDetailId": {},
  1080. "RecommendationDetailData": {
  1081. "type": "structure",
  1082. "members": {
  1083. "AccountScope": {},
  1084. "LookbackPeriodInDays": {},
  1085. "SavingsPlansType": {},
  1086. "TermInYears": {},
  1087. "PaymentOption": {},
  1088. "AccountId": {},
  1089. "CurrencyCode": {},
  1090. "InstanceFamily": {},
  1091. "Region": {},
  1092. "OfferingId": {},
  1093. "GenerationTimestamp": {},
  1094. "LatestUsageTimestamp": {},
  1095. "CurrentAverageHourlyOnDemandSpend": {},
  1096. "CurrentMaximumHourlyOnDemandSpend": {},
  1097. "CurrentMinimumHourlyOnDemandSpend": {},
  1098. "EstimatedAverageUtilization": {},
  1099. "EstimatedMonthlySavingsAmount": {},
  1100. "EstimatedOnDemandCost": {},
  1101. "EstimatedOnDemandCostWithCurrentCommitment": {},
  1102. "EstimatedROI": {},
  1103. "EstimatedSPCost": {},
  1104. "EstimatedSavingsAmount": {},
  1105. "EstimatedSavingsPercentage": {},
  1106. "ExistingHourlyCommitment": {},
  1107. "HourlyCommitmentToPurchase": {},
  1108. "UpfrontCost": {},
  1109. "CurrentAverageCoverage": {},
  1110. "EstimatedAverageCoverage": {},
  1111. "MetricsOverLookbackPeriod": {
  1112. "type": "list",
  1113. "member": {
  1114. "type": "structure",
  1115. "members": {
  1116. "StartTime": {},
  1117. "EstimatedOnDemandCost": {},
  1118. "CurrentCoverage": {},
  1119. "EstimatedCoverage": {},
  1120. "EstimatedNewCommitmentUtilization": {}
  1121. }
  1122. }
  1123. }
  1124. }
  1125. }
  1126. }
  1127. }
  1128. },
  1129. "GetSavingsPlansCoverage": {
  1130. "input": {
  1131. "type": "structure",
  1132. "required": [
  1133. "TimePeriod"
  1134. ],
  1135. "members": {
  1136. "TimePeriod": {
  1137. "shape": "S2o"
  1138. },
  1139. "GroupBy": {
  1140. "shape": "S2s"
  1141. },
  1142. "Granularity": {},
  1143. "Filter": {
  1144. "shape": "S7"
  1145. },
  1146. "Metrics": {
  1147. "shape": "S2q"
  1148. },
  1149. "NextToken": {},
  1150. "MaxResults": {
  1151. "type": "integer"
  1152. },
  1153. "SortBy": {
  1154. "shape": "S3i"
  1155. }
  1156. }
  1157. },
  1158. "output": {
  1159. "type": "structure",
  1160. "required": [
  1161. "SavingsPlansCoverages"
  1162. ],
  1163. "members": {
  1164. "SavingsPlansCoverages": {
  1165. "type": "list",
  1166. "member": {
  1167. "type": "structure",
  1168. "members": {
  1169. "Attributes": {
  1170. "shape": "S3a"
  1171. },
  1172. "Coverage": {
  1173. "type": "structure",
  1174. "members": {
  1175. "SpendCoveredBySavingsPlans": {},
  1176. "OnDemandCost": {},
  1177. "TotalCost": {},
  1178. "CoveragePercentage": {}
  1179. }
  1180. },
  1181. "TimePeriod": {
  1182. "shape": "S2o"
  1183. }
  1184. }
  1185. }
  1186. },
  1187. "NextToken": {}
  1188. }
  1189. }
  1190. },
  1191. "GetSavingsPlansPurchaseRecommendation": {
  1192. "input": {
  1193. "type": "structure",
  1194. "required": [
  1195. "SavingsPlansType",
  1196. "TermInYears",
  1197. "PaymentOption",
  1198. "LookbackPeriodInDays"
  1199. ],
  1200. "members": {
  1201. "SavingsPlansType": {},
  1202. "TermInYears": {},
  1203. "PaymentOption": {},
  1204. "AccountScope": {},
  1205. "NextPageToken": {},
  1206. "PageSize": {
  1207. "type": "integer"
  1208. },
  1209. "LookbackPeriodInDays": {},
  1210. "Filter": {
  1211. "shape": "S7"
  1212. }
  1213. }
  1214. },
  1215. "output": {
  1216. "type": "structure",
  1217. "members": {
  1218. "Metadata": {
  1219. "type": "structure",
  1220. "members": {
  1221. "RecommendationId": {},
  1222. "GenerationTimestamp": {},
  1223. "AdditionalMetadata": {}
  1224. }
  1225. },
  1226. "SavingsPlansPurchaseRecommendation": {
  1227. "type": "structure",
  1228. "members": {
  1229. "AccountScope": {},
  1230. "SavingsPlansType": {},
  1231. "TermInYears": {},
  1232. "PaymentOption": {},
  1233. "LookbackPeriodInDays": {},
  1234. "SavingsPlansPurchaseRecommendationDetails": {
  1235. "type": "list",
  1236. "member": {
  1237. "type": "structure",
  1238. "members": {
  1239. "SavingsPlansDetails": {
  1240. "type": "structure",
  1241. "members": {
  1242. "Region": {},
  1243. "InstanceFamily": {},
  1244. "OfferingId": {}
  1245. }
  1246. },
  1247. "AccountId": {},
  1248. "UpfrontCost": {},
  1249. "EstimatedROI": {},
  1250. "CurrencyCode": {},
  1251. "EstimatedSPCost": {},
  1252. "EstimatedOnDemandCost": {},
  1253. "EstimatedOnDemandCostWithCurrentCommitment": {},
  1254. "EstimatedSavingsAmount": {},
  1255. "EstimatedSavingsPercentage": {},
  1256. "HourlyCommitmentToPurchase": {},
  1257. "EstimatedAverageUtilization": {},
  1258. "EstimatedMonthlySavingsAmount": {},
  1259. "CurrentMinimumHourlyOnDemandSpend": {},
  1260. "CurrentMaximumHourlyOnDemandSpend": {},
  1261. "CurrentAverageHourlyOnDemandSpend": {},
  1262. "RecommendationDetailId": {}
  1263. }
  1264. }
  1265. },
  1266. "SavingsPlansPurchaseRecommendationSummary": {
  1267. "type": "structure",
  1268. "members": {
  1269. "EstimatedROI": {},
  1270. "CurrencyCode": {},
  1271. "EstimatedTotalCost": {},
  1272. "CurrentOnDemandSpend": {},
  1273. "EstimatedSavingsAmount": {},
  1274. "TotalRecommendationCount": {},
  1275. "DailyCommitmentToPurchase": {},
  1276. "HourlyCommitmentToPurchase": {},
  1277. "EstimatedSavingsPercentage": {},
  1278. "EstimatedMonthlySavingsAmount": {},
  1279. "EstimatedOnDemandCostWithCurrentCommitment": {}
  1280. }
  1281. }
  1282. }
  1283. },
  1284. "NextPageToken": {}
  1285. }
  1286. }
  1287. },
  1288. "GetSavingsPlansUtilization": {
  1289. "input": {
  1290. "type": "structure",
  1291. "required": [
  1292. "TimePeriod"
  1293. ],
  1294. "members": {
  1295. "TimePeriod": {
  1296. "shape": "S2o"
  1297. },
  1298. "Granularity": {},
  1299. "Filter": {
  1300. "shape": "S7"
  1301. },
  1302. "SortBy": {
  1303. "shape": "S3i"
  1304. }
  1305. }
  1306. },
  1307. "output": {
  1308. "type": "structure",
  1309. "required": [
  1310. "Total"
  1311. ],
  1312. "members": {
  1313. "SavingsPlansUtilizationsByTime": {
  1314. "type": "list",
  1315. "member": {
  1316. "type": "structure",
  1317. "required": [
  1318. "TimePeriod",
  1319. "Utilization"
  1320. ],
  1321. "members": {
  1322. "TimePeriod": {
  1323. "shape": "S2o"
  1324. },
  1325. "Utilization": {
  1326. "shape": "S78"
  1327. },
  1328. "Savings": {
  1329. "shape": "S79"
  1330. },
  1331. "AmortizedCommitment": {
  1332. "shape": "S7a"
  1333. }
  1334. }
  1335. }
  1336. },
  1337. "Total": {
  1338. "shape": "S7b"
  1339. }
  1340. }
  1341. }
  1342. },
  1343. "GetSavingsPlansUtilizationDetails": {
  1344. "input": {
  1345. "type": "structure",
  1346. "required": [
  1347. "TimePeriod"
  1348. ],
  1349. "members": {
  1350. "TimePeriod": {
  1351. "shape": "S2o"
  1352. },
  1353. "Filter": {
  1354. "shape": "S7"
  1355. },
  1356. "DataType": {
  1357. "type": "list",
  1358. "member": {}
  1359. },
  1360. "NextToken": {},
  1361. "MaxResults": {
  1362. "type": "integer"
  1363. },
  1364. "SortBy": {
  1365. "shape": "S3i"
  1366. }
  1367. }
  1368. },
  1369. "output": {
  1370. "type": "structure",
  1371. "required": [
  1372. "SavingsPlansUtilizationDetails",
  1373. "TimePeriod"
  1374. ],
  1375. "members": {
  1376. "SavingsPlansUtilizationDetails": {
  1377. "type": "list",
  1378. "member": {
  1379. "type": "structure",
  1380. "members": {
  1381. "SavingsPlanArn": {},
  1382. "Attributes": {
  1383. "shape": "S3a"
  1384. },
  1385. "Utilization": {
  1386. "shape": "S78"
  1387. },
  1388. "Savings": {
  1389. "shape": "S79"
  1390. },
  1391. "AmortizedCommitment": {
  1392. "shape": "S7a"
  1393. }
  1394. }
  1395. }
  1396. },
  1397. "Total": {
  1398. "shape": "S7b"
  1399. },
  1400. "TimePeriod": {
  1401. "shape": "S2o"
  1402. },
  1403. "NextToken": {}
  1404. }
  1405. }
  1406. },
  1407. "GetTags": {
  1408. "input": {
  1409. "type": "structure",
  1410. "required": [
  1411. "TimePeriod"
  1412. ],
  1413. "members": {
  1414. "SearchString": {},
  1415. "TimePeriod": {
  1416. "shape": "S2o"
  1417. },
  1418. "TagKey": {},
  1419. "Filter": {
  1420. "shape": "S7"
  1421. },
  1422. "SortBy": {
  1423. "shape": "S3h"
  1424. },
  1425. "MaxResults": {
  1426. "type": "integer"
  1427. },
  1428. "NextPageToken": {}
  1429. }
  1430. },
  1431. "output": {
  1432. "type": "structure",
  1433. "required": [
  1434. "Tags",
  1435. "ReturnSize",
  1436. "TotalSize"
  1437. ],
  1438. "members": {
  1439. "NextPageToken": {},
  1440. "Tags": {
  1441. "type": "list",
  1442. "member": {}
  1443. },
  1444. "ReturnSize": {
  1445. "type": "integer"
  1446. },
  1447. "TotalSize": {
  1448. "type": "integer"
  1449. }
  1450. }
  1451. }
  1452. },
  1453. "GetUsageForecast": {
  1454. "input": {
  1455. "type": "structure",
  1456. "required": [
  1457. "TimePeriod",
  1458. "Metric",
  1459. "Granularity"
  1460. ],
  1461. "members": {
  1462. "TimePeriod": {
  1463. "shape": "S2o"
  1464. },
  1465. "Metric": {},
  1466. "Granularity": {},
  1467. "Filter": {
  1468. "shape": "S7"
  1469. },
  1470. "PredictionIntervalLevel": {
  1471. "type": "integer"
  1472. }
  1473. }
  1474. },
  1475. "output": {
  1476. "type": "structure",
  1477. "members": {
  1478. "Total": {
  1479. "shape": "S30"
  1480. },
  1481. "ForecastResultsByTime": {
  1482. "shape": "S3t"
  1483. }
  1484. }
  1485. }
  1486. },
  1487. "ListCostAllocationTagBackfillHistory": {
  1488. "input": {
  1489. "type": "structure",
  1490. "members": {
  1491. "NextToken": {},
  1492. "MaxResults": {
  1493. "type": "integer"
  1494. }
  1495. }
  1496. },
  1497. "output": {
  1498. "type": "structure",
  1499. "members": {
  1500. "BackfillRequests": {
  1501. "type": "list",
  1502. "member": {
  1503. "shape": "S7t"
  1504. }
  1505. },
  1506. "NextToken": {}
  1507. }
  1508. }
  1509. },
  1510. "ListCostAllocationTags": {
  1511. "input": {
  1512. "type": "structure",
  1513. "members": {
  1514. "Status": {},
  1515. "TagKeys": {
  1516. "type": "list",
  1517. "member": {}
  1518. },
  1519. "Type": {},
  1520. "NextToken": {},
  1521. "MaxResults": {
  1522. "type": "integer"
  1523. }
  1524. }
  1525. },
  1526. "output": {
  1527. "type": "structure",
  1528. "members": {
  1529. "CostAllocationTags": {
  1530. "type": "list",
  1531. "member": {
  1532. "type": "structure",
  1533. "required": [
  1534. "TagKey",
  1535. "Type",
  1536. "Status"
  1537. ],
  1538. "members": {
  1539. "TagKey": {},
  1540. "Type": {},
  1541. "Status": {},
  1542. "LastUpdatedDate": {},
  1543. "LastUsedDate": {}
  1544. }
  1545. }
  1546. },
  1547. "NextToken": {}
  1548. }
  1549. }
  1550. },
  1551. "ListCostCategoryDefinitions": {
  1552. "input": {
  1553. "type": "structure",
  1554. "members": {
  1555. "EffectiveOn": {},
  1556. "NextToken": {},
  1557. "MaxResults": {
  1558. "type": "integer"
  1559. }
  1560. }
  1561. },
  1562. "output": {
  1563. "type": "structure",
  1564. "members": {
  1565. "CostCategoryReferences": {
  1566. "type": "list",
  1567. "member": {
  1568. "type": "structure",
  1569. "members": {
  1570. "CostCategoryArn": {},
  1571. "Name": {},
  1572. "EffectiveStart": {},
  1573. "EffectiveEnd": {},
  1574. "NumberOfRules": {
  1575. "type": "integer"
  1576. },
  1577. "ProcessingStatus": {
  1578. "shape": "S1s"
  1579. },
  1580. "Values": {
  1581. "shape": "S3o"
  1582. },
  1583. "DefaultValue": {}
  1584. }
  1585. }
  1586. },
  1587. "NextToken": {}
  1588. }
  1589. }
  1590. },
  1591. "ListSavingsPlansPurchaseRecommendationGeneration": {
  1592. "input": {
  1593. "type": "structure",
  1594. "members": {
  1595. "GenerationStatus": {},
  1596. "RecommendationIds": {
  1597. "type": "list",
  1598. "member": {}
  1599. },
  1600. "PageSize": {
  1601. "type": "integer"
  1602. },
  1603. "NextPageToken": {}
  1604. }
  1605. },
  1606. "output": {
  1607. "type": "structure",
  1608. "members": {
  1609. "GenerationSummaryList": {
  1610. "type": "list",
  1611. "member": {
  1612. "type": "structure",
  1613. "members": {
  1614. "RecommendationId": {},
  1615. "GenerationStatus": {},
  1616. "GenerationStartedTime": {},
  1617. "GenerationCompletionTime": {},
  1618. "EstimatedCompletionTime": {}
  1619. }
  1620. }
  1621. },
  1622. "NextPageToken": {}
  1623. }
  1624. }
  1625. },
  1626. "ListTagsForResource": {
  1627. "input": {
  1628. "type": "structure",
  1629. "required": [
  1630. "ResourceArn"
  1631. ],
  1632. "members": {
  1633. "ResourceArn": {}
  1634. }
  1635. },
  1636. "output": {
  1637. "type": "structure",
  1638. "members": {
  1639. "ResourceTags": {
  1640. "shape": "Sk"
  1641. }
  1642. }
  1643. }
  1644. },
  1645. "ProvideAnomalyFeedback": {
  1646. "input": {
  1647. "type": "structure",
  1648. "required": [
  1649. "AnomalyId",
  1650. "Feedback"
  1651. ],
  1652. "members": {
  1653. "AnomalyId": {},
  1654. "Feedback": {}
  1655. }
  1656. },
  1657. "output": {
  1658. "type": "structure",
  1659. "required": [
  1660. "AnomalyId"
  1661. ],
  1662. "members": {
  1663. "AnomalyId": {}
  1664. }
  1665. }
  1666. },
  1667. "StartCostAllocationTagBackfill": {
  1668. "input": {
  1669. "type": "structure",
  1670. "required": [
  1671. "BackfillFrom"
  1672. ],
  1673. "members": {
  1674. "BackfillFrom": {}
  1675. }
  1676. },
  1677. "output": {
  1678. "type": "structure",
  1679. "members": {
  1680. "BackfillRequest": {
  1681. "shape": "S7t"
  1682. }
  1683. }
  1684. }
  1685. },
  1686. "StartSavingsPlansPurchaseRecommendationGeneration": {
  1687. "input": {
  1688. "type": "structure",
  1689. "members": {}
  1690. },
  1691. "output": {
  1692. "type": "structure",
  1693. "members": {
  1694. "RecommendationId": {},
  1695. "GenerationStartedTime": {},
  1696. "EstimatedCompletionTime": {}
  1697. }
  1698. }
  1699. },
  1700. "TagResource": {
  1701. "input": {
  1702. "type": "structure",
  1703. "required": [
  1704. "ResourceArn",
  1705. "ResourceTags"
  1706. ],
  1707. "members": {
  1708. "ResourceArn": {},
  1709. "ResourceTags": {
  1710. "shape": "Sk"
  1711. }
  1712. }
  1713. },
  1714. "output": {
  1715. "type": "structure",
  1716. "members": {}
  1717. }
  1718. },
  1719. "UntagResource": {
  1720. "input": {
  1721. "type": "structure",
  1722. "required": [
  1723. "ResourceArn",
  1724. "ResourceTagKeys"
  1725. ],
  1726. "members": {
  1727. "ResourceArn": {},
  1728. "ResourceTagKeys": {
  1729. "type": "list",
  1730. "member": {}
  1731. }
  1732. }
  1733. },
  1734. "output": {
  1735. "type": "structure",
  1736. "members": {}
  1737. }
  1738. },
  1739. "UpdateAnomalyMonitor": {
  1740. "input": {
  1741. "type": "structure",
  1742. "required": [
  1743. "MonitorArn"
  1744. ],
  1745. "members": {
  1746. "MonitorArn": {},
  1747. "MonitorName": {}
  1748. }
  1749. },
  1750. "output": {
  1751. "type": "structure",
  1752. "required": [
  1753. "MonitorArn"
  1754. ],
  1755. "members": {
  1756. "MonitorArn": {}
  1757. }
  1758. }
  1759. },
  1760. "UpdateAnomalySubscription": {
  1761. "input": {
  1762. "type": "structure",
  1763. "required": [
  1764. "SubscriptionArn"
  1765. ],
  1766. "members": {
  1767. "SubscriptionArn": {},
  1768. "Threshold": {
  1769. "deprecated": true,
  1770. "deprecatedMessage": "Threshold has been deprecated in favor of ThresholdExpression",
  1771. "type": "double"
  1772. },
  1773. "Frequency": {},
  1774. "MonitorArnList": {
  1775. "shape": "Sr"
  1776. },
  1777. "Subscribers": {
  1778. "shape": "St"
  1779. },
  1780. "SubscriptionName": {},
  1781. "ThresholdExpression": {
  1782. "shape": "S7"
  1783. }
  1784. }
  1785. },
  1786. "output": {
  1787. "type": "structure",
  1788. "required": [
  1789. "SubscriptionArn"
  1790. ],
  1791. "members": {
  1792. "SubscriptionArn": {}
  1793. }
  1794. }
  1795. },
  1796. "UpdateCostAllocationTagsStatus": {
  1797. "input": {
  1798. "type": "structure",
  1799. "required": [
  1800. "CostAllocationTagsStatus"
  1801. ],
  1802. "members": {
  1803. "CostAllocationTagsStatus": {
  1804. "type": "list",
  1805. "member": {
  1806. "type": "structure",
  1807. "required": [
  1808. "TagKey",
  1809. "Status"
  1810. ],
  1811. "members": {
  1812. "TagKey": {},
  1813. "Status": {}
  1814. }
  1815. }
  1816. }
  1817. }
  1818. },
  1819. "output": {
  1820. "type": "structure",
  1821. "members": {
  1822. "Errors": {
  1823. "type": "list",
  1824. "member": {
  1825. "type": "structure",
  1826. "members": {
  1827. "TagKey": {},
  1828. "Code": {},
  1829. "Message": {}
  1830. }
  1831. }
  1832. }
  1833. }
  1834. }
  1835. },
  1836. "UpdateCostCategoryDefinition": {
  1837. "input": {
  1838. "type": "structure",
  1839. "required": [
  1840. "CostCategoryArn",
  1841. "RuleVersion",
  1842. "Rules"
  1843. ],
  1844. "members": {
  1845. "CostCategoryArn": {},
  1846. "EffectiveStart": {},
  1847. "RuleVersion": {},
  1848. "Rules": {
  1849. "shape": "S14"
  1850. },
  1851. "DefaultValue": {},
  1852. "SplitChargeRules": {
  1853. "shape": "S1a"
  1854. }
  1855. }
  1856. },
  1857. "output": {
  1858. "type": "structure",
  1859. "members": {
  1860. "CostCategoryArn": {},
  1861. "EffectiveStart": {}
  1862. }
  1863. }
  1864. }
  1865. },
  1866. "shapes": {
  1867. "S2": {
  1868. "type": "structure",
  1869. "required": [
  1870. "MonitorName",
  1871. "MonitorType"
  1872. ],
  1873. "members": {
  1874. "MonitorArn": {},
  1875. "MonitorName": {},
  1876. "CreationDate": {},
  1877. "LastUpdatedDate": {},
  1878. "LastEvaluatedDate": {},
  1879. "MonitorType": {},
  1880. "MonitorDimension": {},
  1881. "MonitorSpecification": {
  1882. "shape": "S7"
  1883. },
  1884. "DimensionalValueCount": {
  1885. "type": "integer"
  1886. }
  1887. }
  1888. },
  1889. "S7": {
  1890. "type": "structure",
  1891. "members": {
  1892. "Or": {
  1893. "shape": "S8"
  1894. },
  1895. "And": {
  1896. "shape": "S8"
  1897. },
  1898. "Not": {
  1899. "shape": "S7"
  1900. },
  1901. "Dimensions": {
  1902. "type": "structure",
  1903. "members": {
  1904. "Key": {},
  1905. "Values": {
  1906. "shape": "Sb"
  1907. },
  1908. "MatchOptions": {
  1909. "shape": "Sd"
  1910. }
  1911. }
  1912. },
  1913. "Tags": {
  1914. "shape": "Sf"
  1915. },
  1916. "CostCategories": {
  1917. "type": "structure",
  1918. "members": {
  1919. "Key": {},
  1920. "Values": {
  1921. "shape": "Sb"
  1922. },
  1923. "MatchOptions": {
  1924. "shape": "Sd"
  1925. }
  1926. }
  1927. }
  1928. }
  1929. },
  1930. "S8": {
  1931. "type": "list",
  1932. "member": {
  1933. "shape": "S7"
  1934. }
  1935. },
  1936. "Sb": {
  1937. "type": "list",
  1938. "member": {}
  1939. },
  1940. "Sd": {
  1941. "type": "list",
  1942. "member": {}
  1943. },
  1944. "Sf": {
  1945. "type": "structure",
  1946. "members": {
  1947. "Key": {},
  1948. "Values": {
  1949. "shape": "Sb"
  1950. },
  1951. "MatchOptions": {
  1952. "shape": "Sd"
  1953. }
  1954. }
  1955. },
  1956. "Sk": {
  1957. "type": "list",
  1958. "member": {
  1959. "type": "structure",
  1960. "required": [
  1961. "Key",
  1962. "Value"
  1963. ],
  1964. "members": {
  1965. "Key": {},
  1966. "Value": {}
  1967. }
  1968. }
  1969. },
  1970. "Sq": {
  1971. "type": "structure",
  1972. "required": [
  1973. "MonitorArnList",
  1974. "Subscribers",
  1975. "Frequency",
  1976. "SubscriptionName"
  1977. ],
  1978. "members": {
  1979. "SubscriptionArn": {},
  1980. "AccountId": {},
  1981. "MonitorArnList": {
  1982. "shape": "Sr"
  1983. },
  1984. "Subscribers": {
  1985. "shape": "St"
  1986. },
  1987. "Threshold": {
  1988. "deprecated": true,
  1989. "deprecatedMessage": "Threshold has been deprecated in favor of ThresholdExpression",
  1990. "type": "double"
  1991. },
  1992. "Frequency": {},
  1993. "SubscriptionName": {},
  1994. "ThresholdExpression": {
  1995. "shape": "S7"
  1996. }
  1997. }
  1998. },
  1999. "Sr": {
  2000. "type": "list",
  2001. "member": {}
  2002. },
  2003. "St": {
  2004. "type": "list",
  2005. "member": {
  2006. "type": "structure",
  2007. "members": {
  2008. "Address": {},
  2009. "Type": {},
  2010. "Status": {}
  2011. }
  2012. }
  2013. },
  2014. "S14": {
  2015. "type": "list",
  2016. "member": {
  2017. "type": "structure",
  2018. "members": {
  2019. "Value": {},
  2020. "Rule": {
  2021. "shape": "S7"
  2022. },
  2023. "InheritedValue": {
  2024. "type": "structure",
  2025. "members": {
  2026. "DimensionName": {},
  2027. "DimensionKey": {}
  2028. }
  2029. },
  2030. "Type": {}
  2031. }
  2032. }
  2033. },
  2034. "S1a": {
  2035. "type": "list",
  2036. "member": {
  2037. "type": "structure",
  2038. "required": [
  2039. "Source",
  2040. "Targets",
  2041. "Method"
  2042. ],
  2043. "members": {
  2044. "Source": {},
  2045. "Targets": {
  2046. "type": "list",
  2047. "member": {}
  2048. },
  2049. "Method": {},
  2050. "Parameters": {
  2051. "type": "list",
  2052. "member": {
  2053. "type": "structure",
  2054. "required": [
  2055. "Type",
  2056. "Values"
  2057. ],
  2058. "members": {
  2059. "Type": {},
  2060. "Values": {
  2061. "type": "list",
  2062. "member": {}
  2063. }
  2064. }
  2065. }
  2066. }
  2067. }
  2068. }
  2069. },
  2070. "S1s": {
  2071. "type": "list",
  2072. "member": {
  2073. "type": "structure",
  2074. "members": {
  2075. "Component": {},
  2076. "Status": {}
  2077. }
  2078. }
  2079. },
  2080. "S2o": {
  2081. "type": "structure",
  2082. "required": [
  2083. "Start",
  2084. "End"
  2085. ],
  2086. "members": {
  2087. "Start": {},
  2088. "End": {}
  2089. }
  2090. },
  2091. "S2q": {
  2092. "type": "list",
  2093. "member": {}
  2094. },
  2095. "S2s": {
  2096. "type": "list",
  2097. "member": {
  2098. "type": "structure",
  2099. "members": {
  2100. "Type": {},
  2101. "Key": {}
  2102. }
  2103. }
  2104. },
  2105. "S2x": {
  2106. "type": "list",
  2107. "member": {
  2108. "type": "structure",
  2109. "members": {
  2110. "TimePeriod": {
  2111. "shape": "S2o"
  2112. },
  2113. "Total": {
  2114. "shape": "S2z"
  2115. },
  2116. "Groups": {
  2117. "type": "list",
  2118. "member": {
  2119. "type": "structure",
  2120. "members": {
  2121. "Keys": {
  2122. "type": "list",
  2123. "member": {}
  2124. },
  2125. "Metrics": {
  2126. "shape": "S2z"
  2127. }
  2128. }
  2129. }
  2130. },
  2131. "Estimated": {
  2132. "type": "boolean"
  2133. }
  2134. }
  2135. }
  2136. },
  2137. "S2z": {
  2138. "type": "map",
  2139. "key": {},
  2140. "value": {
  2141. "shape": "S30"
  2142. }
  2143. },
  2144. "S30": {
  2145. "type": "structure",
  2146. "members": {
  2147. "Amount": {},
  2148. "Unit": {}
  2149. }
  2150. },
  2151. "S38": {
  2152. "type": "list",
  2153. "member": {
  2154. "type": "structure",
  2155. "members": {
  2156. "Value": {},
  2157. "Attributes": {
  2158. "shape": "S3a"
  2159. }
  2160. }
  2161. }
  2162. },
  2163. "S3a": {
  2164. "type": "map",
  2165. "key": {},
  2166. "value": {}
  2167. },
  2168. "S3h": {
  2169. "type": "list",
  2170. "member": {
  2171. "shape": "S3i"
  2172. }
  2173. },
  2174. "S3i": {
  2175. "type": "structure",
  2176. "required": [
  2177. "Key"
  2178. ],
  2179. "members": {
  2180. "Key": {},
  2181. "SortOrder": {}
  2182. }
  2183. },
  2184. "S3o": {
  2185. "type": "list",
  2186. "member": {}
  2187. },
  2188. "S3t": {
  2189. "type": "list",
  2190. "member": {
  2191. "type": "structure",
  2192. "members": {
  2193. "TimePeriod": {
  2194. "shape": "S2o"
  2195. },
  2196. "MeanValue": {},
  2197. "PredictionIntervalLowerBound": {},
  2198. "PredictionIntervalUpperBound": {}
  2199. }
  2200. }
  2201. },
  2202. "S44": {
  2203. "type": "structure",
  2204. "members": {
  2205. "CoverageHours": {
  2206. "type": "structure",
  2207. "members": {
  2208. "OnDemandHours": {},
  2209. "ReservedHours": {},
  2210. "TotalRunningHours": {},
  2211. "CoverageHoursPercentage": {}
  2212. }
  2213. },
  2214. "CoverageNormalizedUnits": {
  2215. "type": "structure",
  2216. "members": {
  2217. "OnDemandNormalizedUnits": {},
  2218. "ReservedNormalizedUnits": {},
  2219. "TotalRunningNormalizedUnits": {},
  2220. "CoverageNormalizedUnitsPercentage": {}
  2221. }
  2222. },
  2223. "CoverageCost": {
  2224. "type": "structure",
  2225. "members": {
  2226. "OnDemandCost": {}
  2227. }
  2228. }
  2229. }
  2230. },
  2231. "S4m": {
  2232. "type": "structure",
  2233. "members": {
  2234. "EC2Specification": {
  2235. "type": "structure",
  2236. "members": {
  2237. "OfferingClass": {}
  2238. }
  2239. }
  2240. }
  2241. },
  2242. "S5c": {
  2243. "type": "structure",
  2244. "members": {
  2245. "UtilizationPercentage": {},
  2246. "UtilizationPercentageInUnits": {},
  2247. "PurchasedHours": {},
  2248. "PurchasedUnits": {},
  2249. "TotalActualHours": {},
  2250. "TotalActualUnits": {},
  2251. "UnusedHours": {},
  2252. "UnusedUnits": {},
  2253. "OnDemandCostOfRIHoursUsed": {},
  2254. "NetRISavings": {},
  2255. "TotalPotentialRISavings": {},
  2256. "AmortizedUpfrontFee": {},
  2257. "AmortizedRecurringFee": {},
  2258. "TotalAmortizedFee": {},
  2259. "RICostForUnusedHours": {},
  2260. "RealizedSavings": {},
  2261. "UnrealizedSavings": {}
  2262. }
  2263. },
  2264. "S5v": {
  2265. "type": "structure",
  2266. "required": [
  2267. "RecommendationTarget",
  2268. "BenefitsConsidered"
  2269. ],
  2270. "members": {
  2271. "RecommendationTarget": {},
  2272. "BenefitsConsidered": {
  2273. "type": "boolean"
  2274. }
  2275. }
  2276. },
  2277. "S64": {
  2278. "type": "structure",
  2279. "members": {
  2280. "EC2ResourceDetails": {
  2281. "type": "structure",
  2282. "members": {
  2283. "HourlyOnDemandRate": {},
  2284. "InstanceType": {},
  2285. "Platform": {},
  2286. "Region": {},
  2287. "Sku": {},
  2288. "Memory": {},
  2289. "NetworkPerformance": {},
  2290. "Storage": {},
  2291. "Vcpu": {}
  2292. }
  2293. }
  2294. }
  2295. },
  2296. "S66": {
  2297. "type": "structure",
  2298. "members": {
  2299. "EC2ResourceUtilization": {
  2300. "type": "structure",
  2301. "members": {
  2302. "MaxCpuUtilizationPercentage": {},
  2303. "MaxMemoryUtilizationPercentage": {},
  2304. "MaxStorageUtilizationPercentage": {},
  2305. "EBSResourceUtilization": {
  2306. "type": "structure",
  2307. "members": {
  2308. "EbsReadOpsPerSecond": {},
  2309. "EbsWriteOpsPerSecond": {},
  2310. "EbsReadBytesPerSecond": {},
  2311. "EbsWriteBytesPerSecond": {}
  2312. }
  2313. },
  2314. "DiskResourceUtilization": {
  2315. "type": "structure",
  2316. "members": {
  2317. "DiskReadOpsPerSecond": {},
  2318. "DiskWriteOpsPerSecond": {},
  2319. "DiskReadBytesPerSecond": {},
  2320. "DiskWriteBytesPerSecond": {}
  2321. }
  2322. },
  2323. "NetworkResourceUtilization": {
  2324. "type": "structure",
  2325. "members": {
  2326. "NetworkInBytesPerSecond": {},
  2327. "NetworkOutBytesPerSecond": {},
  2328. "NetworkPacketsInPerSecond": {},
  2329. "NetworkPacketsOutPerSecond": {}
  2330. }
  2331. }
  2332. }
  2333. }
  2334. }
  2335. },
  2336. "S78": {
  2337. "type": "structure",
  2338. "members": {
  2339. "TotalCommitment": {},
  2340. "UsedCommitment": {},
  2341. "UnusedCommitment": {},
  2342. "UtilizationPercentage": {}
  2343. }
  2344. },
  2345. "S79": {
  2346. "type": "structure",
  2347. "members": {
  2348. "NetSavings": {},
  2349. "OnDemandCostEquivalent": {}
  2350. }
  2351. },
  2352. "S7a": {
  2353. "type": "structure",
  2354. "members": {
  2355. "AmortizedRecurringCommitment": {},
  2356. "AmortizedUpfrontCommitment": {},
  2357. "TotalAmortizedCommitment": {}
  2358. }
  2359. },
  2360. "S7b": {
  2361. "type": "structure",
  2362. "required": [
  2363. "Utilization"
  2364. ],
  2365. "members": {
  2366. "Utilization": {
  2367. "shape": "S78"
  2368. },
  2369. "Savings": {
  2370. "shape": "S79"
  2371. },
  2372. "AmortizedCommitment": {
  2373. "shape": "S7a"
  2374. }
  2375. }
  2376. },
  2377. "S7t": {
  2378. "type": "structure",
  2379. "members": {
  2380. "BackfillFrom": {},
  2381. "RequestedAt": {},
  2382. "CompletedAt": {},
  2383. "BackfillStatus": {},
  2384. "LastUpdatedAt": {}
  2385. }
  2386. }
  2387. }
  2388. }