autoscaling-2011-01-01.min.json 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2011-01-01",
  5. "endpointPrefix": "autoscaling",
  6. "protocol": "query",
  7. "serviceFullName": "Auto Scaling",
  8. "serviceId": "Auto Scaling",
  9. "signatureVersion": "v4",
  10. "uid": "autoscaling-2011-01-01",
  11. "xmlNamespace": "http://autoscaling.amazonaws.com/doc/2011-01-01/"
  12. },
  13. "operations": {
  14. "AttachInstances": {
  15. "input": {
  16. "type": "structure",
  17. "required": [
  18. "AutoScalingGroupName"
  19. ],
  20. "members": {
  21. "InstanceIds": {
  22. "shape": "S2"
  23. },
  24. "AutoScalingGroupName": {}
  25. }
  26. }
  27. },
  28. "AttachLoadBalancerTargetGroups": {
  29. "input": {
  30. "type": "structure",
  31. "required": [
  32. "AutoScalingGroupName",
  33. "TargetGroupARNs"
  34. ],
  35. "members": {
  36. "AutoScalingGroupName": {},
  37. "TargetGroupARNs": {
  38. "shape": "S6"
  39. }
  40. }
  41. },
  42. "output": {
  43. "resultWrapper": "AttachLoadBalancerTargetGroupsResult",
  44. "type": "structure",
  45. "members": {}
  46. }
  47. },
  48. "AttachLoadBalancers": {
  49. "input": {
  50. "type": "structure",
  51. "required": [
  52. "AutoScalingGroupName",
  53. "LoadBalancerNames"
  54. ],
  55. "members": {
  56. "AutoScalingGroupName": {},
  57. "LoadBalancerNames": {
  58. "shape": "Sa"
  59. }
  60. }
  61. },
  62. "output": {
  63. "resultWrapper": "AttachLoadBalancersResult",
  64. "type": "structure",
  65. "members": {}
  66. }
  67. },
  68. "AttachTrafficSources": {
  69. "input": {
  70. "type": "structure",
  71. "required": [
  72. "AutoScalingGroupName",
  73. "TrafficSources"
  74. ],
  75. "members": {
  76. "AutoScalingGroupName": {},
  77. "TrafficSources": {
  78. "shape": "Sd"
  79. }
  80. }
  81. },
  82. "output": {
  83. "resultWrapper": "AttachTrafficSourcesResult",
  84. "type": "structure",
  85. "members": {}
  86. }
  87. },
  88. "BatchDeleteScheduledAction": {
  89. "input": {
  90. "type": "structure",
  91. "required": [
  92. "AutoScalingGroupName",
  93. "ScheduledActionNames"
  94. ],
  95. "members": {
  96. "AutoScalingGroupName": {},
  97. "ScheduledActionNames": {
  98. "shape": "Sh"
  99. }
  100. }
  101. },
  102. "output": {
  103. "resultWrapper": "BatchDeleteScheduledActionResult",
  104. "type": "structure",
  105. "members": {
  106. "FailedScheduledActions": {
  107. "shape": "Sj"
  108. }
  109. }
  110. }
  111. },
  112. "BatchPutScheduledUpdateGroupAction": {
  113. "input": {
  114. "type": "structure",
  115. "required": [
  116. "AutoScalingGroupName",
  117. "ScheduledUpdateGroupActions"
  118. ],
  119. "members": {
  120. "AutoScalingGroupName": {},
  121. "ScheduledUpdateGroupActions": {
  122. "type": "list",
  123. "member": {
  124. "type": "structure",
  125. "required": [
  126. "ScheduledActionName"
  127. ],
  128. "members": {
  129. "ScheduledActionName": {},
  130. "StartTime": {
  131. "type": "timestamp"
  132. },
  133. "EndTime": {
  134. "type": "timestamp"
  135. },
  136. "Recurrence": {},
  137. "MinSize": {
  138. "type": "integer"
  139. },
  140. "MaxSize": {
  141. "type": "integer"
  142. },
  143. "DesiredCapacity": {
  144. "type": "integer"
  145. },
  146. "TimeZone": {}
  147. }
  148. }
  149. }
  150. }
  151. },
  152. "output": {
  153. "resultWrapper": "BatchPutScheduledUpdateGroupActionResult",
  154. "type": "structure",
  155. "members": {
  156. "FailedScheduledUpdateGroupActions": {
  157. "shape": "Sj"
  158. }
  159. }
  160. }
  161. },
  162. "CancelInstanceRefresh": {
  163. "input": {
  164. "type": "structure",
  165. "required": [
  166. "AutoScalingGroupName"
  167. ],
  168. "members": {
  169. "AutoScalingGroupName": {}
  170. }
  171. },
  172. "output": {
  173. "resultWrapper": "CancelInstanceRefreshResult",
  174. "type": "structure",
  175. "members": {
  176. "InstanceRefreshId": {}
  177. }
  178. }
  179. },
  180. "CompleteLifecycleAction": {
  181. "input": {
  182. "type": "structure",
  183. "required": [
  184. "LifecycleHookName",
  185. "AutoScalingGroupName",
  186. "LifecycleActionResult"
  187. ],
  188. "members": {
  189. "LifecycleHookName": {},
  190. "AutoScalingGroupName": {},
  191. "LifecycleActionToken": {},
  192. "LifecycleActionResult": {},
  193. "InstanceId": {}
  194. }
  195. },
  196. "output": {
  197. "resultWrapper": "CompleteLifecycleActionResult",
  198. "type": "structure",
  199. "members": {}
  200. }
  201. },
  202. "CreateAutoScalingGroup": {
  203. "input": {
  204. "type": "structure",
  205. "required": [
  206. "AutoScalingGroupName",
  207. "MinSize",
  208. "MaxSize"
  209. ],
  210. "members": {
  211. "AutoScalingGroupName": {},
  212. "LaunchConfigurationName": {},
  213. "LaunchTemplate": {
  214. "shape": "S14"
  215. },
  216. "MixedInstancesPolicy": {
  217. "shape": "S16"
  218. },
  219. "InstanceId": {},
  220. "MinSize": {
  221. "type": "integer"
  222. },
  223. "MaxSize": {
  224. "type": "integer"
  225. },
  226. "DesiredCapacity": {
  227. "type": "integer"
  228. },
  229. "DefaultCooldown": {
  230. "type": "integer"
  231. },
  232. "AvailabilityZones": {
  233. "shape": "S2d"
  234. },
  235. "LoadBalancerNames": {
  236. "shape": "Sa"
  237. },
  238. "TargetGroupARNs": {
  239. "shape": "S6"
  240. },
  241. "HealthCheckType": {},
  242. "HealthCheckGracePeriod": {
  243. "type": "integer"
  244. },
  245. "PlacementGroup": {},
  246. "VPCZoneIdentifier": {},
  247. "TerminationPolicies": {
  248. "shape": "S2g"
  249. },
  250. "NewInstancesProtectedFromScaleIn": {
  251. "type": "boolean"
  252. },
  253. "CapacityRebalance": {
  254. "type": "boolean"
  255. },
  256. "LifecycleHookSpecificationList": {
  257. "type": "list",
  258. "member": {
  259. "type": "structure",
  260. "required": [
  261. "LifecycleHookName",
  262. "LifecycleTransition"
  263. ],
  264. "members": {
  265. "LifecycleHookName": {},
  266. "LifecycleTransition": {},
  267. "NotificationMetadata": {},
  268. "HeartbeatTimeout": {
  269. "type": "integer"
  270. },
  271. "DefaultResult": {},
  272. "NotificationTargetARN": {},
  273. "RoleARN": {}
  274. }
  275. }
  276. },
  277. "Tags": {
  278. "shape": "S2q"
  279. },
  280. "ServiceLinkedRoleARN": {},
  281. "MaxInstanceLifetime": {
  282. "type": "integer"
  283. },
  284. "Context": {},
  285. "DesiredCapacityType": {},
  286. "DefaultInstanceWarmup": {
  287. "type": "integer"
  288. },
  289. "TrafficSources": {
  290. "shape": "Sd"
  291. },
  292. "InstanceMaintenancePolicy": {
  293. "shape": "S2y"
  294. }
  295. }
  296. }
  297. },
  298. "CreateLaunchConfiguration": {
  299. "input": {
  300. "type": "structure",
  301. "required": [
  302. "LaunchConfigurationName"
  303. ],
  304. "members": {
  305. "LaunchConfigurationName": {},
  306. "ImageId": {},
  307. "KeyName": {},
  308. "SecurityGroups": {
  309. "shape": "S32"
  310. },
  311. "ClassicLinkVPCId": {},
  312. "ClassicLinkVPCSecurityGroups": {
  313. "shape": "S33"
  314. },
  315. "UserData": {},
  316. "InstanceId": {},
  317. "InstanceType": {},
  318. "KernelId": {},
  319. "RamdiskId": {},
  320. "BlockDeviceMappings": {
  321. "shape": "S35"
  322. },
  323. "InstanceMonitoring": {
  324. "shape": "S3f"
  325. },
  326. "SpotPrice": {},
  327. "IamInstanceProfile": {},
  328. "EbsOptimized": {
  329. "type": "boolean"
  330. },
  331. "AssociatePublicIpAddress": {
  332. "type": "boolean"
  333. },
  334. "PlacementTenancy": {},
  335. "MetadataOptions": {
  336. "shape": "S3k"
  337. }
  338. }
  339. }
  340. },
  341. "CreateOrUpdateTags": {
  342. "input": {
  343. "type": "structure",
  344. "required": [
  345. "Tags"
  346. ],
  347. "members": {
  348. "Tags": {
  349. "shape": "S2q"
  350. }
  351. }
  352. }
  353. },
  354. "DeleteAutoScalingGroup": {
  355. "input": {
  356. "type": "structure",
  357. "required": [
  358. "AutoScalingGroupName"
  359. ],
  360. "members": {
  361. "AutoScalingGroupName": {},
  362. "ForceDelete": {
  363. "type": "boolean"
  364. }
  365. }
  366. }
  367. },
  368. "DeleteLaunchConfiguration": {
  369. "input": {
  370. "type": "structure",
  371. "required": [
  372. "LaunchConfigurationName"
  373. ],
  374. "members": {
  375. "LaunchConfigurationName": {}
  376. }
  377. }
  378. },
  379. "DeleteLifecycleHook": {
  380. "input": {
  381. "type": "structure",
  382. "required": [
  383. "LifecycleHookName",
  384. "AutoScalingGroupName"
  385. ],
  386. "members": {
  387. "LifecycleHookName": {},
  388. "AutoScalingGroupName": {}
  389. }
  390. },
  391. "output": {
  392. "resultWrapper": "DeleteLifecycleHookResult",
  393. "type": "structure",
  394. "members": {}
  395. }
  396. },
  397. "DeleteNotificationConfiguration": {
  398. "input": {
  399. "type": "structure",
  400. "required": [
  401. "AutoScalingGroupName",
  402. "TopicARN"
  403. ],
  404. "members": {
  405. "AutoScalingGroupName": {},
  406. "TopicARN": {}
  407. }
  408. }
  409. },
  410. "DeletePolicy": {
  411. "input": {
  412. "type": "structure",
  413. "required": [
  414. "PolicyName"
  415. ],
  416. "members": {
  417. "AutoScalingGroupName": {},
  418. "PolicyName": {}
  419. }
  420. }
  421. },
  422. "DeleteScheduledAction": {
  423. "input": {
  424. "type": "structure",
  425. "required": [
  426. "AutoScalingGroupName",
  427. "ScheduledActionName"
  428. ],
  429. "members": {
  430. "AutoScalingGroupName": {},
  431. "ScheduledActionName": {}
  432. }
  433. }
  434. },
  435. "DeleteTags": {
  436. "input": {
  437. "type": "structure",
  438. "required": [
  439. "Tags"
  440. ],
  441. "members": {
  442. "Tags": {
  443. "shape": "S2q"
  444. }
  445. }
  446. }
  447. },
  448. "DeleteWarmPool": {
  449. "input": {
  450. "type": "structure",
  451. "required": [
  452. "AutoScalingGroupName"
  453. ],
  454. "members": {
  455. "AutoScalingGroupName": {},
  456. "ForceDelete": {
  457. "type": "boolean"
  458. }
  459. }
  460. },
  461. "output": {
  462. "resultWrapper": "DeleteWarmPoolResult",
  463. "type": "structure",
  464. "members": {}
  465. }
  466. },
  467. "DescribeAccountLimits": {
  468. "output": {
  469. "resultWrapper": "DescribeAccountLimitsResult",
  470. "type": "structure",
  471. "members": {
  472. "MaxNumberOfAutoScalingGroups": {
  473. "type": "integer"
  474. },
  475. "MaxNumberOfLaunchConfigurations": {
  476. "type": "integer"
  477. },
  478. "NumberOfAutoScalingGroups": {
  479. "type": "integer"
  480. },
  481. "NumberOfLaunchConfigurations": {
  482. "type": "integer"
  483. }
  484. }
  485. }
  486. },
  487. "DescribeAdjustmentTypes": {
  488. "output": {
  489. "resultWrapper": "DescribeAdjustmentTypesResult",
  490. "type": "structure",
  491. "members": {
  492. "AdjustmentTypes": {
  493. "type": "list",
  494. "member": {
  495. "type": "structure",
  496. "members": {
  497. "AdjustmentType": {}
  498. }
  499. }
  500. }
  501. }
  502. }
  503. },
  504. "DescribeAutoScalingGroups": {
  505. "input": {
  506. "type": "structure",
  507. "members": {
  508. "AutoScalingGroupNames": {
  509. "shape": "S49"
  510. },
  511. "NextToken": {},
  512. "MaxRecords": {
  513. "type": "integer"
  514. },
  515. "Filters": {
  516. "shape": "S4b"
  517. }
  518. }
  519. },
  520. "output": {
  521. "resultWrapper": "DescribeAutoScalingGroupsResult",
  522. "type": "structure",
  523. "required": [
  524. "AutoScalingGroups"
  525. ],
  526. "members": {
  527. "AutoScalingGroups": {
  528. "type": "list",
  529. "member": {
  530. "type": "structure",
  531. "required": [
  532. "AutoScalingGroupName",
  533. "MinSize",
  534. "MaxSize",
  535. "DesiredCapacity",
  536. "DefaultCooldown",
  537. "AvailabilityZones",
  538. "HealthCheckType",
  539. "CreatedTime"
  540. ],
  541. "members": {
  542. "AutoScalingGroupName": {},
  543. "AutoScalingGroupARN": {},
  544. "LaunchConfigurationName": {},
  545. "LaunchTemplate": {
  546. "shape": "S14"
  547. },
  548. "MixedInstancesPolicy": {
  549. "shape": "S16"
  550. },
  551. "MinSize": {
  552. "type": "integer"
  553. },
  554. "MaxSize": {
  555. "type": "integer"
  556. },
  557. "DesiredCapacity": {
  558. "type": "integer"
  559. },
  560. "PredictedCapacity": {
  561. "type": "integer"
  562. },
  563. "DefaultCooldown": {
  564. "type": "integer"
  565. },
  566. "AvailabilityZones": {
  567. "shape": "S2d"
  568. },
  569. "LoadBalancerNames": {
  570. "shape": "Sa"
  571. },
  572. "TargetGroupARNs": {
  573. "shape": "S6"
  574. },
  575. "HealthCheckType": {},
  576. "HealthCheckGracePeriod": {
  577. "type": "integer"
  578. },
  579. "Instances": {
  580. "shape": "S4i"
  581. },
  582. "CreatedTime": {
  583. "type": "timestamp"
  584. },
  585. "SuspendedProcesses": {
  586. "type": "list",
  587. "member": {
  588. "type": "structure",
  589. "members": {
  590. "ProcessName": {},
  591. "SuspensionReason": {}
  592. }
  593. }
  594. },
  595. "PlacementGroup": {},
  596. "VPCZoneIdentifier": {},
  597. "EnabledMetrics": {
  598. "type": "list",
  599. "member": {
  600. "type": "structure",
  601. "members": {
  602. "Metric": {},
  603. "Granularity": {}
  604. }
  605. }
  606. },
  607. "Status": {},
  608. "Tags": {
  609. "shape": "S4p"
  610. },
  611. "TerminationPolicies": {
  612. "shape": "S2g"
  613. },
  614. "NewInstancesProtectedFromScaleIn": {
  615. "type": "boolean"
  616. },
  617. "ServiceLinkedRoleARN": {},
  618. "MaxInstanceLifetime": {
  619. "type": "integer"
  620. },
  621. "CapacityRebalance": {
  622. "type": "boolean"
  623. },
  624. "WarmPoolConfiguration": {
  625. "shape": "S4r"
  626. },
  627. "WarmPoolSize": {
  628. "type": "integer"
  629. },
  630. "Context": {},
  631. "DesiredCapacityType": {},
  632. "DefaultInstanceWarmup": {
  633. "type": "integer"
  634. },
  635. "TrafficSources": {
  636. "shape": "Sd"
  637. },
  638. "InstanceMaintenancePolicy": {
  639. "shape": "S2y"
  640. }
  641. }
  642. }
  643. },
  644. "NextToken": {}
  645. }
  646. }
  647. },
  648. "DescribeAutoScalingInstances": {
  649. "input": {
  650. "type": "structure",
  651. "members": {
  652. "InstanceIds": {
  653. "shape": "S2"
  654. },
  655. "MaxRecords": {
  656. "type": "integer"
  657. },
  658. "NextToken": {}
  659. }
  660. },
  661. "output": {
  662. "resultWrapper": "DescribeAutoScalingInstancesResult",
  663. "type": "structure",
  664. "members": {
  665. "AutoScalingInstances": {
  666. "type": "list",
  667. "member": {
  668. "type": "structure",
  669. "required": [
  670. "InstanceId",
  671. "AutoScalingGroupName",
  672. "AvailabilityZone",
  673. "LifecycleState",
  674. "HealthStatus",
  675. "ProtectedFromScaleIn"
  676. ],
  677. "members": {
  678. "InstanceId": {},
  679. "InstanceType": {},
  680. "AutoScalingGroupName": {},
  681. "AvailabilityZone": {},
  682. "LifecycleState": {},
  683. "HealthStatus": {},
  684. "LaunchConfigurationName": {},
  685. "LaunchTemplate": {
  686. "shape": "S14"
  687. },
  688. "ProtectedFromScaleIn": {
  689. "type": "boolean"
  690. },
  691. "WeightedCapacity": {}
  692. }
  693. }
  694. },
  695. "NextToken": {}
  696. }
  697. }
  698. },
  699. "DescribeAutoScalingNotificationTypes": {
  700. "output": {
  701. "resultWrapper": "DescribeAutoScalingNotificationTypesResult",
  702. "type": "structure",
  703. "members": {
  704. "AutoScalingNotificationTypes": {
  705. "shape": "S54"
  706. }
  707. }
  708. }
  709. },
  710. "DescribeInstanceRefreshes": {
  711. "input": {
  712. "type": "structure",
  713. "required": [
  714. "AutoScalingGroupName"
  715. ],
  716. "members": {
  717. "AutoScalingGroupName": {},
  718. "InstanceRefreshIds": {
  719. "type": "list",
  720. "member": {}
  721. },
  722. "NextToken": {},
  723. "MaxRecords": {
  724. "type": "integer"
  725. }
  726. }
  727. },
  728. "output": {
  729. "resultWrapper": "DescribeInstanceRefreshesResult",
  730. "type": "structure",
  731. "members": {
  732. "InstanceRefreshes": {
  733. "type": "list",
  734. "member": {
  735. "type": "structure",
  736. "members": {
  737. "InstanceRefreshId": {},
  738. "AutoScalingGroupName": {},
  739. "Status": {},
  740. "StatusReason": {},
  741. "StartTime": {
  742. "type": "timestamp"
  743. },
  744. "EndTime": {
  745. "type": "timestamp"
  746. },
  747. "PercentageComplete": {
  748. "type": "integer"
  749. },
  750. "InstancesToUpdate": {
  751. "type": "integer"
  752. },
  753. "ProgressDetails": {
  754. "shape": "S5e"
  755. },
  756. "Preferences": {
  757. "shape": "S5h"
  758. },
  759. "DesiredConfiguration": {
  760. "shape": "S5t"
  761. },
  762. "RollbackDetails": {
  763. "type": "structure",
  764. "members": {
  765. "RollbackReason": {},
  766. "RollbackStartTime": {
  767. "type": "timestamp"
  768. },
  769. "PercentageCompleteOnRollback": {
  770. "type": "integer"
  771. },
  772. "InstancesToUpdateOnRollback": {
  773. "type": "integer"
  774. },
  775. "ProgressDetailsOnRollback": {
  776. "shape": "S5e"
  777. }
  778. }
  779. }
  780. }
  781. }
  782. },
  783. "NextToken": {}
  784. }
  785. }
  786. },
  787. "DescribeLaunchConfigurations": {
  788. "input": {
  789. "type": "structure",
  790. "members": {
  791. "LaunchConfigurationNames": {
  792. "type": "list",
  793. "member": {}
  794. },
  795. "NextToken": {},
  796. "MaxRecords": {
  797. "type": "integer"
  798. }
  799. }
  800. },
  801. "output": {
  802. "resultWrapper": "DescribeLaunchConfigurationsResult",
  803. "type": "structure",
  804. "required": [
  805. "LaunchConfigurations"
  806. ],
  807. "members": {
  808. "LaunchConfigurations": {
  809. "type": "list",
  810. "member": {
  811. "type": "structure",
  812. "required": [
  813. "LaunchConfigurationName",
  814. "ImageId",
  815. "InstanceType",
  816. "CreatedTime"
  817. ],
  818. "members": {
  819. "LaunchConfigurationName": {},
  820. "LaunchConfigurationARN": {},
  821. "ImageId": {},
  822. "KeyName": {},
  823. "SecurityGroups": {
  824. "shape": "S32"
  825. },
  826. "ClassicLinkVPCId": {},
  827. "ClassicLinkVPCSecurityGroups": {
  828. "shape": "S33"
  829. },
  830. "UserData": {},
  831. "InstanceType": {},
  832. "KernelId": {},
  833. "RamdiskId": {},
  834. "BlockDeviceMappings": {
  835. "shape": "S35"
  836. },
  837. "InstanceMonitoring": {
  838. "shape": "S3f"
  839. },
  840. "SpotPrice": {},
  841. "IamInstanceProfile": {},
  842. "CreatedTime": {
  843. "type": "timestamp"
  844. },
  845. "EbsOptimized": {
  846. "type": "boolean"
  847. },
  848. "AssociatePublicIpAddress": {
  849. "type": "boolean"
  850. },
  851. "PlacementTenancy": {},
  852. "MetadataOptions": {
  853. "shape": "S3k"
  854. }
  855. }
  856. }
  857. },
  858. "NextToken": {}
  859. }
  860. }
  861. },
  862. "DescribeLifecycleHookTypes": {
  863. "output": {
  864. "resultWrapper": "DescribeLifecycleHookTypesResult",
  865. "type": "structure",
  866. "members": {
  867. "LifecycleHookTypes": {
  868. "shape": "S54"
  869. }
  870. }
  871. }
  872. },
  873. "DescribeLifecycleHooks": {
  874. "input": {
  875. "type": "structure",
  876. "required": [
  877. "AutoScalingGroupName"
  878. ],
  879. "members": {
  880. "AutoScalingGroupName": {},
  881. "LifecycleHookNames": {
  882. "type": "list",
  883. "member": {}
  884. }
  885. }
  886. },
  887. "output": {
  888. "resultWrapper": "DescribeLifecycleHooksResult",
  889. "type": "structure",
  890. "members": {
  891. "LifecycleHooks": {
  892. "type": "list",
  893. "member": {
  894. "type": "structure",
  895. "members": {
  896. "LifecycleHookName": {},
  897. "AutoScalingGroupName": {},
  898. "LifecycleTransition": {},
  899. "NotificationTargetARN": {},
  900. "RoleARN": {},
  901. "NotificationMetadata": {},
  902. "HeartbeatTimeout": {
  903. "type": "integer"
  904. },
  905. "GlobalTimeout": {
  906. "type": "integer"
  907. },
  908. "DefaultResult": {}
  909. }
  910. }
  911. }
  912. }
  913. }
  914. },
  915. "DescribeLoadBalancerTargetGroups": {
  916. "input": {
  917. "type": "structure",
  918. "required": [
  919. "AutoScalingGroupName"
  920. ],
  921. "members": {
  922. "AutoScalingGroupName": {},
  923. "NextToken": {},
  924. "MaxRecords": {
  925. "type": "integer"
  926. }
  927. }
  928. },
  929. "output": {
  930. "resultWrapper": "DescribeLoadBalancerTargetGroupsResult",
  931. "type": "structure",
  932. "members": {
  933. "LoadBalancerTargetGroups": {
  934. "type": "list",
  935. "member": {
  936. "type": "structure",
  937. "members": {
  938. "LoadBalancerTargetGroupARN": {},
  939. "State": {}
  940. }
  941. }
  942. },
  943. "NextToken": {}
  944. }
  945. }
  946. },
  947. "DescribeLoadBalancers": {
  948. "input": {
  949. "type": "structure",
  950. "required": [
  951. "AutoScalingGroupName"
  952. ],
  953. "members": {
  954. "AutoScalingGroupName": {},
  955. "NextToken": {},
  956. "MaxRecords": {
  957. "type": "integer"
  958. }
  959. }
  960. },
  961. "output": {
  962. "resultWrapper": "DescribeLoadBalancersResult",
  963. "type": "structure",
  964. "members": {
  965. "LoadBalancers": {
  966. "type": "list",
  967. "member": {
  968. "type": "structure",
  969. "members": {
  970. "LoadBalancerName": {},
  971. "State": {}
  972. }
  973. }
  974. },
  975. "NextToken": {}
  976. }
  977. }
  978. },
  979. "DescribeMetricCollectionTypes": {
  980. "output": {
  981. "resultWrapper": "DescribeMetricCollectionTypesResult",
  982. "type": "structure",
  983. "members": {
  984. "Metrics": {
  985. "type": "list",
  986. "member": {
  987. "type": "structure",
  988. "members": {
  989. "Metric": {}
  990. }
  991. }
  992. },
  993. "Granularities": {
  994. "type": "list",
  995. "member": {
  996. "type": "structure",
  997. "members": {
  998. "Granularity": {}
  999. }
  1000. }
  1001. }
  1002. }
  1003. }
  1004. },
  1005. "DescribeNotificationConfigurations": {
  1006. "input": {
  1007. "type": "structure",
  1008. "members": {
  1009. "AutoScalingGroupNames": {
  1010. "shape": "S49"
  1011. },
  1012. "NextToken": {},
  1013. "MaxRecords": {
  1014. "type": "integer"
  1015. }
  1016. }
  1017. },
  1018. "output": {
  1019. "resultWrapper": "DescribeNotificationConfigurationsResult",
  1020. "type": "structure",
  1021. "required": [
  1022. "NotificationConfigurations"
  1023. ],
  1024. "members": {
  1025. "NotificationConfigurations": {
  1026. "type": "list",
  1027. "member": {
  1028. "type": "structure",
  1029. "members": {
  1030. "AutoScalingGroupName": {},
  1031. "TopicARN": {},
  1032. "NotificationType": {}
  1033. }
  1034. }
  1035. },
  1036. "NextToken": {}
  1037. }
  1038. }
  1039. },
  1040. "DescribePolicies": {
  1041. "input": {
  1042. "type": "structure",
  1043. "members": {
  1044. "AutoScalingGroupName": {},
  1045. "PolicyNames": {
  1046. "type": "list",
  1047. "member": {}
  1048. },
  1049. "PolicyTypes": {
  1050. "type": "list",
  1051. "member": {}
  1052. },
  1053. "NextToken": {},
  1054. "MaxRecords": {
  1055. "type": "integer"
  1056. }
  1057. }
  1058. },
  1059. "output": {
  1060. "resultWrapper": "DescribePoliciesResult",
  1061. "type": "structure",
  1062. "members": {
  1063. "ScalingPolicies": {
  1064. "type": "list",
  1065. "member": {
  1066. "type": "structure",
  1067. "members": {
  1068. "AutoScalingGroupName": {},
  1069. "PolicyName": {},
  1070. "PolicyARN": {},
  1071. "PolicyType": {},
  1072. "AdjustmentType": {},
  1073. "MinAdjustmentStep": {
  1074. "shape": "S6u"
  1075. },
  1076. "MinAdjustmentMagnitude": {
  1077. "type": "integer"
  1078. },
  1079. "ScalingAdjustment": {
  1080. "type": "integer"
  1081. },
  1082. "Cooldown": {
  1083. "type": "integer"
  1084. },
  1085. "StepAdjustments": {
  1086. "shape": "S6x"
  1087. },
  1088. "MetricAggregationType": {},
  1089. "EstimatedInstanceWarmup": {
  1090. "type": "integer"
  1091. },
  1092. "Alarms": {
  1093. "shape": "S71"
  1094. },
  1095. "TargetTrackingConfiguration": {
  1096. "shape": "S73"
  1097. },
  1098. "Enabled": {
  1099. "type": "boolean"
  1100. },
  1101. "PredictiveScalingConfiguration": {
  1102. "shape": "S7o"
  1103. }
  1104. }
  1105. }
  1106. },
  1107. "NextToken": {}
  1108. }
  1109. }
  1110. },
  1111. "DescribeScalingActivities": {
  1112. "input": {
  1113. "type": "structure",
  1114. "members": {
  1115. "ActivityIds": {
  1116. "type": "list",
  1117. "member": {}
  1118. },
  1119. "AutoScalingGroupName": {},
  1120. "IncludeDeletedGroups": {
  1121. "type": "boolean"
  1122. },
  1123. "MaxRecords": {
  1124. "type": "integer"
  1125. },
  1126. "NextToken": {}
  1127. }
  1128. },
  1129. "output": {
  1130. "resultWrapper": "DescribeScalingActivitiesResult",
  1131. "type": "structure",
  1132. "required": [
  1133. "Activities"
  1134. ],
  1135. "members": {
  1136. "Activities": {
  1137. "shape": "S8b"
  1138. },
  1139. "NextToken": {}
  1140. }
  1141. }
  1142. },
  1143. "DescribeScalingProcessTypes": {
  1144. "output": {
  1145. "resultWrapper": "DescribeScalingProcessTypesResult",
  1146. "type": "structure",
  1147. "members": {
  1148. "Processes": {
  1149. "type": "list",
  1150. "member": {
  1151. "type": "structure",
  1152. "required": [
  1153. "ProcessName"
  1154. ],
  1155. "members": {
  1156. "ProcessName": {}
  1157. }
  1158. }
  1159. }
  1160. }
  1161. }
  1162. },
  1163. "DescribeScheduledActions": {
  1164. "input": {
  1165. "type": "structure",
  1166. "members": {
  1167. "AutoScalingGroupName": {},
  1168. "ScheduledActionNames": {
  1169. "shape": "Sh"
  1170. },
  1171. "StartTime": {
  1172. "type": "timestamp"
  1173. },
  1174. "EndTime": {
  1175. "type": "timestamp"
  1176. },
  1177. "NextToken": {},
  1178. "MaxRecords": {
  1179. "type": "integer"
  1180. }
  1181. }
  1182. },
  1183. "output": {
  1184. "resultWrapper": "DescribeScheduledActionsResult",
  1185. "type": "structure",
  1186. "members": {
  1187. "ScheduledUpdateGroupActions": {
  1188. "type": "list",
  1189. "member": {
  1190. "type": "structure",
  1191. "members": {
  1192. "AutoScalingGroupName": {},
  1193. "ScheduledActionName": {},
  1194. "ScheduledActionARN": {},
  1195. "Time": {
  1196. "type": "timestamp"
  1197. },
  1198. "StartTime": {
  1199. "type": "timestamp"
  1200. },
  1201. "EndTime": {
  1202. "type": "timestamp"
  1203. },
  1204. "Recurrence": {},
  1205. "MinSize": {
  1206. "type": "integer"
  1207. },
  1208. "MaxSize": {
  1209. "type": "integer"
  1210. },
  1211. "DesiredCapacity": {
  1212. "type": "integer"
  1213. },
  1214. "TimeZone": {}
  1215. }
  1216. }
  1217. },
  1218. "NextToken": {}
  1219. }
  1220. }
  1221. },
  1222. "DescribeTags": {
  1223. "input": {
  1224. "type": "structure",
  1225. "members": {
  1226. "Filters": {
  1227. "shape": "S4b"
  1228. },
  1229. "NextToken": {},
  1230. "MaxRecords": {
  1231. "type": "integer"
  1232. }
  1233. }
  1234. },
  1235. "output": {
  1236. "resultWrapper": "DescribeTagsResult",
  1237. "type": "structure",
  1238. "members": {
  1239. "Tags": {
  1240. "shape": "S4p"
  1241. },
  1242. "NextToken": {}
  1243. }
  1244. }
  1245. },
  1246. "DescribeTerminationPolicyTypes": {
  1247. "output": {
  1248. "resultWrapper": "DescribeTerminationPolicyTypesResult",
  1249. "type": "structure",
  1250. "members": {
  1251. "TerminationPolicyTypes": {
  1252. "shape": "S2g"
  1253. }
  1254. }
  1255. }
  1256. },
  1257. "DescribeTrafficSources": {
  1258. "input": {
  1259. "type": "structure",
  1260. "required": [
  1261. "AutoScalingGroupName"
  1262. ],
  1263. "members": {
  1264. "AutoScalingGroupName": {},
  1265. "TrafficSourceType": {},
  1266. "NextToken": {},
  1267. "MaxRecords": {
  1268. "type": "integer"
  1269. }
  1270. }
  1271. },
  1272. "output": {
  1273. "resultWrapper": "DescribeTrafficSourcesResult",
  1274. "type": "structure",
  1275. "members": {
  1276. "TrafficSources": {
  1277. "type": "list",
  1278. "member": {
  1279. "type": "structure",
  1280. "members": {
  1281. "TrafficSource": {
  1282. "deprecated": true,
  1283. "deprecatedMessage": "TrafficSource has been replaced by Identifier"
  1284. },
  1285. "State": {},
  1286. "Identifier": {},
  1287. "Type": {}
  1288. }
  1289. }
  1290. },
  1291. "NextToken": {}
  1292. }
  1293. }
  1294. },
  1295. "DescribeWarmPool": {
  1296. "input": {
  1297. "type": "structure",
  1298. "required": [
  1299. "AutoScalingGroupName"
  1300. ],
  1301. "members": {
  1302. "AutoScalingGroupName": {},
  1303. "MaxRecords": {
  1304. "type": "integer"
  1305. },
  1306. "NextToken": {}
  1307. }
  1308. },
  1309. "output": {
  1310. "resultWrapper": "DescribeWarmPoolResult",
  1311. "type": "structure",
  1312. "members": {
  1313. "WarmPoolConfiguration": {
  1314. "shape": "S4r"
  1315. },
  1316. "Instances": {
  1317. "shape": "S4i"
  1318. },
  1319. "NextToken": {}
  1320. }
  1321. }
  1322. },
  1323. "DetachInstances": {
  1324. "input": {
  1325. "type": "structure",
  1326. "required": [
  1327. "AutoScalingGroupName",
  1328. "ShouldDecrementDesiredCapacity"
  1329. ],
  1330. "members": {
  1331. "InstanceIds": {
  1332. "shape": "S2"
  1333. },
  1334. "AutoScalingGroupName": {},
  1335. "ShouldDecrementDesiredCapacity": {
  1336. "type": "boolean"
  1337. }
  1338. }
  1339. },
  1340. "output": {
  1341. "resultWrapper": "DetachInstancesResult",
  1342. "type": "structure",
  1343. "members": {
  1344. "Activities": {
  1345. "shape": "S8b"
  1346. }
  1347. }
  1348. }
  1349. },
  1350. "DetachLoadBalancerTargetGroups": {
  1351. "input": {
  1352. "type": "structure",
  1353. "required": [
  1354. "AutoScalingGroupName",
  1355. "TargetGroupARNs"
  1356. ],
  1357. "members": {
  1358. "AutoScalingGroupName": {},
  1359. "TargetGroupARNs": {
  1360. "shape": "S6"
  1361. }
  1362. }
  1363. },
  1364. "output": {
  1365. "resultWrapper": "DetachLoadBalancerTargetGroupsResult",
  1366. "type": "structure",
  1367. "members": {}
  1368. }
  1369. },
  1370. "DetachLoadBalancers": {
  1371. "input": {
  1372. "type": "structure",
  1373. "required": [
  1374. "AutoScalingGroupName",
  1375. "LoadBalancerNames"
  1376. ],
  1377. "members": {
  1378. "AutoScalingGroupName": {},
  1379. "LoadBalancerNames": {
  1380. "shape": "Sa"
  1381. }
  1382. }
  1383. },
  1384. "output": {
  1385. "resultWrapper": "DetachLoadBalancersResult",
  1386. "type": "structure",
  1387. "members": {}
  1388. }
  1389. },
  1390. "DetachTrafficSources": {
  1391. "input": {
  1392. "type": "structure",
  1393. "required": [
  1394. "AutoScalingGroupName",
  1395. "TrafficSources"
  1396. ],
  1397. "members": {
  1398. "AutoScalingGroupName": {},
  1399. "TrafficSources": {
  1400. "shape": "Sd"
  1401. }
  1402. }
  1403. },
  1404. "output": {
  1405. "resultWrapper": "DetachTrafficSourcesResult",
  1406. "type": "structure",
  1407. "members": {}
  1408. }
  1409. },
  1410. "DisableMetricsCollection": {
  1411. "input": {
  1412. "type": "structure",
  1413. "required": [
  1414. "AutoScalingGroupName"
  1415. ],
  1416. "members": {
  1417. "AutoScalingGroupName": {},
  1418. "Metrics": {
  1419. "shape": "S96"
  1420. }
  1421. }
  1422. }
  1423. },
  1424. "EnableMetricsCollection": {
  1425. "input": {
  1426. "type": "structure",
  1427. "required": [
  1428. "AutoScalingGroupName",
  1429. "Granularity"
  1430. ],
  1431. "members": {
  1432. "AutoScalingGroupName": {},
  1433. "Metrics": {
  1434. "shape": "S96"
  1435. },
  1436. "Granularity": {}
  1437. }
  1438. }
  1439. },
  1440. "EnterStandby": {
  1441. "input": {
  1442. "type": "structure",
  1443. "required": [
  1444. "AutoScalingGroupName",
  1445. "ShouldDecrementDesiredCapacity"
  1446. ],
  1447. "members": {
  1448. "InstanceIds": {
  1449. "shape": "S2"
  1450. },
  1451. "AutoScalingGroupName": {},
  1452. "ShouldDecrementDesiredCapacity": {
  1453. "type": "boolean"
  1454. }
  1455. }
  1456. },
  1457. "output": {
  1458. "resultWrapper": "EnterStandbyResult",
  1459. "type": "structure",
  1460. "members": {
  1461. "Activities": {
  1462. "shape": "S8b"
  1463. }
  1464. }
  1465. }
  1466. },
  1467. "ExecutePolicy": {
  1468. "input": {
  1469. "type": "structure",
  1470. "required": [
  1471. "PolicyName"
  1472. ],
  1473. "members": {
  1474. "AutoScalingGroupName": {},
  1475. "PolicyName": {},
  1476. "HonorCooldown": {
  1477. "type": "boolean"
  1478. },
  1479. "MetricValue": {
  1480. "type": "double"
  1481. },
  1482. "BreachThreshold": {
  1483. "type": "double"
  1484. }
  1485. }
  1486. }
  1487. },
  1488. "ExitStandby": {
  1489. "input": {
  1490. "type": "structure",
  1491. "required": [
  1492. "AutoScalingGroupName"
  1493. ],
  1494. "members": {
  1495. "InstanceIds": {
  1496. "shape": "S2"
  1497. },
  1498. "AutoScalingGroupName": {}
  1499. }
  1500. },
  1501. "output": {
  1502. "resultWrapper": "ExitStandbyResult",
  1503. "type": "structure",
  1504. "members": {
  1505. "Activities": {
  1506. "shape": "S8b"
  1507. }
  1508. }
  1509. }
  1510. },
  1511. "GetPredictiveScalingForecast": {
  1512. "input": {
  1513. "type": "structure",
  1514. "required": [
  1515. "AutoScalingGroupName",
  1516. "PolicyName",
  1517. "StartTime",
  1518. "EndTime"
  1519. ],
  1520. "members": {
  1521. "AutoScalingGroupName": {},
  1522. "PolicyName": {},
  1523. "StartTime": {
  1524. "type": "timestamp"
  1525. },
  1526. "EndTime": {
  1527. "type": "timestamp"
  1528. }
  1529. }
  1530. },
  1531. "output": {
  1532. "resultWrapper": "GetPredictiveScalingForecastResult",
  1533. "type": "structure",
  1534. "required": [
  1535. "LoadForecast",
  1536. "CapacityForecast",
  1537. "UpdateTime"
  1538. ],
  1539. "members": {
  1540. "LoadForecast": {
  1541. "type": "list",
  1542. "member": {
  1543. "type": "structure",
  1544. "required": [
  1545. "Timestamps",
  1546. "Values",
  1547. "MetricSpecification"
  1548. ],
  1549. "members": {
  1550. "Timestamps": {
  1551. "shape": "S9i"
  1552. },
  1553. "Values": {
  1554. "shape": "S9j"
  1555. },
  1556. "MetricSpecification": {
  1557. "shape": "S7q"
  1558. }
  1559. }
  1560. }
  1561. },
  1562. "CapacityForecast": {
  1563. "type": "structure",
  1564. "required": [
  1565. "Timestamps",
  1566. "Values"
  1567. ],
  1568. "members": {
  1569. "Timestamps": {
  1570. "shape": "S9i"
  1571. },
  1572. "Values": {
  1573. "shape": "S9j"
  1574. }
  1575. }
  1576. },
  1577. "UpdateTime": {
  1578. "type": "timestamp"
  1579. }
  1580. }
  1581. }
  1582. },
  1583. "PutLifecycleHook": {
  1584. "input": {
  1585. "type": "structure",
  1586. "required": [
  1587. "LifecycleHookName",
  1588. "AutoScalingGroupName"
  1589. ],
  1590. "members": {
  1591. "LifecycleHookName": {},
  1592. "AutoScalingGroupName": {},
  1593. "LifecycleTransition": {},
  1594. "RoleARN": {},
  1595. "NotificationTargetARN": {},
  1596. "NotificationMetadata": {},
  1597. "HeartbeatTimeout": {
  1598. "type": "integer"
  1599. },
  1600. "DefaultResult": {}
  1601. }
  1602. },
  1603. "output": {
  1604. "resultWrapper": "PutLifecycleHookResult",
  1605. "type": "structure",
  1606. "members": {}
  1607. }
  1608. },
  1609. "PutNotificationConfiguration": {
  1610. "input": {
  1611. "type": "structure",
  1612. "required": [
  1613. "AutoScalingGroupName",
  1614. "TopicARN",
  1615. "NotificationTypes"
  1616. ],
  1617. "members": {
  1618. "AutoScalingGroupName": {},
  1619. "TopicARN": {},
  1620. "NotificationTypes": {
  1621. "shape": "S54"
  1622. }
  1623. }
  1624. }
  1625. },
  1626. "PutScalingPolicy": {
  1627. "input": {
  1628. "type": "structure",
  1629. "required": [
  1630. "AutoScalingGroupName",
  1631. "PolicyName"
  1632. ],
  1633. "members": {
  1634. "AutoScalingGroupName": {},
  1635. "PolicyName": {},
  1636. "PolicyType": {},
  1637. "AdjustmentType": {},
  1638. "MinAdjustmentStep": {
  1639. "shape": "S6u"
  1640. },
  1641. "MinAdjustmentMagnitude": {
  1642. "type": "integer"
  1643. },
  1644. "ScalingAdjustment": {
  1645. "type": "integer"
  1646. },
  1647. "Cooldown": {
  1648. "type": "integer"
  1649. },
  1650. "MetricAggregationType": {},
  1651. "StepAdjustments": {
  1652. "shape": "S6x"
  1653. },
  1654. "EstimatedInstanceWarmup": {
  1655. "type": "integer"
  1656. },
  1657. "TargetTrackingConfiguration": {
  1658. "shape": "S73"
  1659. },
  1660. "Enabled": {
  1661. "type": "boolean"
  1662. },
  1663. "PredictiveScalingConfiguration": {
  1664. "shape": "S7o"
  1665. }
  1666. }
  1667. },
  1668. "output": {
  1669. "resultWrapper": "PutScalingPolicyResult",
  1670. "type": "structure",
  1671. "members": {
  1672. "PolicyARN": {},
  1673. "Alarms": {
  1674. "shape": "S71"
  1675. }
  1676. }
  1677. }
  1678. },
  1679. "PutScheduledUpdateGroupAction": {
  1680. "input": {
  1681. "type": "structure",
  1682. "required": [
  1683. "AutoScalingGroupName",
  1684. "ScheduledActionName"
  1685. ],
  1686. "members": {
  1687. "AutoScalingGroupName": {},
  1688. "ScheduledActionName": {},
  1689. "Time": {
  1690. "type": "timestamp"
  1691. },
  1692. "StartTime": {
  1693. "type": "timestamp"
  1694. },
  1695. "EndTime": {
  1696. "type": "timestamp"
  1697. },
  1698. "Recurrence": {},
  1699. "MinSize": {
  1700. "type": "integer"
  1701. },
  1702. "MaxSize": {
  1703. "type": "integer"
  1704. },
  1705. "DesiredCapacity": {
  1706. "type": "integer"
  1707. },
  1708. "TimeZone": {}
  1709. }
  1710. }
  1711. },
  1712. "PutWarmPool": {
  1713. "input": {
  1714. "type": "structure",
  1715. "required": [
  1716. "AutoScalingGroupName"
  1717. ],
  1718. "members": {
  1719. "AutoScalingGroupName": {},
  1720. "MaxGroupPreparedCapacity": {
  1721. "type": "integer"
  1722. },
  1723. "MinSize": {
  1724. "type": "integer"
  1725. },
  1726. "PoolState": {},
  1727. "InstanceReusePolicy": {
  1728. "shape": "S4w"
  1729. }
  1730. }
  1731. },
  1732. "output": {
  1733. "resultWrapper": "PutWarmPoolResult",
  1734. "type": "structure",
  1735. "members": {}
  1736. }
  1737. },
  1738. "RecordLifecycleActionHeartbeat": {
  1739. "input": {
  1740. "type": "structure",
  1741. "required": [
  1742. "LifecycleHookName",
  1743. "AutoScalingGroupName"
  1744. ],
  1745. "members": {
  1746. "LifecycleHookName": {},
  1747. "AutoScalingGroupName": {},
  1748. "LifecycleActionToken": {},
  1749. "InstanceId": {}
  1750. }
  1751. },
  1752. "output": {
  1753. "resultWrapper": "RecordLifecycleActionHeartbeatResult",
  1754. "type": "structure",
  1755. "members": {}
  1756. }
  1757. },
  1758. "ResumeProcesses": {
  1759. "input": {
  1760. "shape": "S9v"
  1761. }
  1762. },
  1763. "RollbackInstanceRefresh": {
  1764. "input": {
  1765. "type": "structure",
  1766. "required": [
  1767. "AutoScalingGroupName"
  1768. ],
  1769. "members": {
  1770. "AutoScalingGroupName": {}
  1771. }
  1772. },
  1773. "output": {
  1774. "resultWrapper": "RollbackInstanceRefreshResult",
  1775. "type": "structure",
  1776. "members": {
  1777. "InstanceRefreshId": {}
  1778. }
  1779. }
  1780. },
  1781. "SetDesiredCapacity": {
  1782. "input": {
  1783. "type": "structure",
  1784. "required": [
  1785. "AutoScalingGroupName",
  1786. "DesiredCapacity"
  1787. ],
  1788. "members": {
  1789. "AutoScalingGroupName": {},
  1790. "DesiredCapacity": {
  1791. "type": "integer"
  1792. },
  1793. "HonorCooldown": {
  1794. "type": "boolean"
  1795. }
  1796. }
  1797. }
  1798. },
  1799. "SetInstanceHealth": {
  1800. "input": {
  1801. "type": "structure",
  1802. "required": [
  1803. "InstanceId",
  1804. "HealthStatus"
  1805. ],
  1806. "members": {
  1807. "InstanceId": {},
  1808. "HealthStatus": {},
  1809. "ShouldRespectGracePeriod": {
  1810. "type": "boolean"
  1811. }
  1812. }
  1813. }
  1814. },
  1815. "SetInstanceProtection": {
  1816. "input": {
  1817. "type": "structure",
  1818. "required": [
  1819. "InstanceIds",
  1820. "AutoScalingGroupName",
  1821. "ProtectedFromScaleIn"
  1822. ],
  1823. "members": {
  1824. "InstanceIds": {
  1825. "shape": "S2"
  1826. },
  1827. "AutoScalingGroupName": {},
  1828. "ProtectedFromScaleIn": {
  1829. "type": "boolean"
  1830. }
  1831. }
  1832. },
  1833. "output": {
  1834. "resultWrapper": "SetInstanceProtectionResult",
  1835. "type": "structure",
  1836. "members": {}
  1837. }
  1838. },
  1839. "StartInstanceRefresh": {
  1840. "input": {
  1841. "type": "structure",
  1842. "required": [
  1843. "AutoScalingGroupName"
  1844. ],
  1845. "members": {
  1846. "AutoScalingGroupName": {},
  1847. "Strategy": {},
  1848. "DesiredConfiguration": {
  1849. "shape": "S5t"
  1850. },
  1851. "Preferences": {
  1852. "shape": "S5h"
  1853. }
  1854. }
  1855. },
  1856. "output": {
  1857. "resultWrapper": "StartInstanceRefreshResult",
  1858. "type": "structure",
  1859. "members": {
  1860. "InstanceRefreshId": {}
  1861. }
  1862. }
  1863. },
  1864. "SuspendProcesses": {
  1865. "input": {
  1866. "shape": "S9v"
  1867. }
  1868. },
  1869. "TerminateInstanceInAutoScalingGroup": {
  1870. "input": {
  1871. "type": "structure",
  1872. "required": [
  1873. "InstanceId",
  1874. "ShouldDecrementDesiredCapacity"
  1875. ],
  1876. "members": {
  1877. "InstanceId": {},
  1878. "ShouldDecrementDesiredCapacity": {
  1879. "type": "boolean"
  1880. }
  1881. }
  1882. },
  1883. "output": {
  1884. "resultWrapper": "TerminateInstanceInAutoScalingGroupResult",
  1885. "type": "structure",
  1886. "members": {
  1887. "Activity": {
  1888. "shape": "S8c"
  1889. }
  1890. }
  1891. }
  1892. },
  1893. "UpdateAutoScalingGroup": {
  1894. "input": {
  1895. "type": "structure",
  1896. "required": [
  1897. "AutoScalingGroupName"
  1898. ],
  1899. "members": {
  1900. "AutoScalingGroupName": {},
  1901. "LaunchConfigurationName": {},
  1902. "LaunchTemplate": {
  1903. "shape": "S14"
  1904. },
  1905. "MixedInstancesPolicy": {
  1906. "shape": "S16"
  1907. },
  1908. "MinSize": {
  1909. "type": "integer"
  1910. },
  1911. "MaxSize": {
  1912. "type": "integer"
  1913. },
  1914. "DesiredCapacity": {
  1915. "type": "integer"
  1916. },
  1917. "DefaultCooldown": {
  1918. "type": "integer"
  1919. },
  1920. "AvailabilityZones": {
  1921. "shape": "S2d"
  1922. },
  1923. "HealthCheckType": {},
  1924. "HealthCheckGracePeriod": {
  1925. "type": "integer"
  1926. },
  1927. "PlacementGroup": {},
  1928. "VPCZoneIdentifier": {},
  1929. "TerminationPolicies": {
  1930. "shape": "S2g"
  1931. },
  1932. "NewInstancesProtectedFromScaleIn": {
  1933. "type": "boolean"
  1934. },
  1935. "ServiceLinkedRoleARN": {},
  1936. "MaxInstanceLifetime": {
  1937. "type": "integer"
  1938. },
  1939. "CapacityRebalance": {
  1940. "type": "boolean"
  1941. },
  1942. "Context": {},
  1943. "DesiredCapacityType": {},
  1944. "DefaultInstanceWarmup": {
  1945. "type": "integer"
  1946. },
  1947. "InstanceMaintenancePolicy": {
  1948. "shape": "S2y"
  1949. }
  1950. }
  1951. }
  1952. }
  1953. },
  1954. "shapes": {
  1955. "S2": {
  1956. "type": "list",
  1957. "member": {}
  1958. },
  1959. "S6": {
  1960. "type": "list",
  1961. "member": {}
  1962. },
  1963. "Sa": {
  1964. "type": "list",
  1965. "member": {}
  1966. },
  1967. "Sd": {
  1968. "type": "list",
  1969. "member": {
  1970. "type": "structure",
  1971. "required": [
  1972. "Identifier"
  1973. ],
  1974. "members": {
  1975. "Identifier": {},
  1976. "Type": {}
  1977. }
  1978. }
  1979. },
  1980. "Sh": {
  1981. "type": "list",
  1982. "member": {}
  1983. },
  1984. "Sj": {
  1985. "type": "list",
  1986. "member": {
  1987. "type": "structure",
  1988. "required": [
  1989. "ScheduledActionName"
  1990. ],
  1991. "members": {
  1992. "ScheduledActionName": {},
  1993. "ErrorCode": {},
  1994. "ErrorMessage": {}
  1995. }
  1996. }
  1997. },
  1998. "S14": {
  1999. "type": "structure",
  2000. "members": {
  2001. "LaunchTemplateId": {},
  2002. "LaunchTemplateName": {},
  2003. "Version": {}
  2004. }
  2005. },
  2006. "S16": {
  2007. "type": "structure",
  2008. "members": {
  2009. "LaunchTemplate": {
  2010. "type": "structure",
  2011. "members": {
  2012. "LaunchTemplateSpecification": {
  2013. "shape": "S14"
  2014. },
  2015. "Overrides": {
  2016. "type": "list",
  2017. "member": {
  2018. "type": "structure",
  2019. "members": {
  2020. "InstanceType": {},
  2021. "WeightedCapacity": {},
  2022. "LaunchTemplateSpecification": {
  2023. "shape": "S14"
  2024. },
  2025. "InstanceRequirements": {
  2026. "type": "structure",
  2027. "required": [
  2028. "VCpuCount",
  2029. "MemoryMiB"
  2030. ],
  2031. "members": {
  2032. "VCpuCount": {
  2033. "type": "structure",
  2034. "required": [
  2035. "Min"
  2036. ],
  2037. "members": {
  2038. "Min": {
  2039. "type": "integer"
  2040. },
  2041. "Max": {
  2042. "type": "integer"
  2043. }
  2044. }
  2045. },
  2046. "MemoryMiB": {
  2047. "type": "structure",
  2048. "required": [
  2049. "Min"
  2050. ],
  2051. "members": {
  2052. "Min": {
  2053. "type": "integer"
  2054. },
  2055. "Max": {
  2056. "type": "integer"
  2057. }
  2058. }
  2059. },
  2060. "CpuManufacturers": {
  2061. "type": "list",
  2062. "member": {}
  2063. },
  2064. "MemoryGiBPerVCpu": {
  2065. "type": "structure",
  2066. "members": {
  2067. "Min": {
  2068. "type": "double"
  2069. },
  2070. "Max": {
  2071. "type": "double"
  2072. }
  2073. }
  2074. },
  2075. "ExcludedInstanceTypes": {
  2076. "type": "list",
  2077. "member": {}
  2078. },
  2079. "InstanceGenerations": {
  2080. "type": "list",
  2081. "member": {}
  2082. },
  2083. "SpotMaxPricePercentageOverLowestPrice": {
  2084. "type": "integer"
  2085. },
  2086. "MaxSpotPriceAsPercentageOfOptimalOnDemandPrice": {
  2087. "type": "integer"
  2088. },
  2089. "OnDemandMaxPricePercentageOverLowestPrice": {
  2090. "type": "integer"
  2091. },
  2092. "BareMetal": {},
  2093. "BurstablePerformance": {},
  2094. "RequireHibernateSupport": {
  2095. "type": "boolean"
  2096. },
  2097. "NetworkInterfaceCount": {
  2098. "type": "structure",
  2099. "members": {
  2100. "Min": {
  2101. "type": "integer"
  2102. },
  2103. "Max": {
  2104. "type": "integer"
  2105. }
  2106. }
  2107. },
  2108. "LocalStorage": {},
  2109. "LocalStorageTypes": {
  2110. "type": "list",
  2111. "member": {}
  2112. },
  2113. "TotalLocalStorageGB": {
  2114. "type": "structure",
  2115. "members": {
  2116. "Min": {
  2117. "type": "double"
  2118. },
  2119. "Max": {
  2120. "type": "double"
  2121. }
  2122. }
  2123. },
  2124. "BaselineEbsBandwidthMbps": {
  2125. "type": "structure",
  2126. "members": {
  2127. "Min": {
  2128. "type": "integer"
  2129. },
  2130. "Max": {
  2131. "type": "integer"
  2132. }
  2133. }
  2134. },
  2135. "AcceleratorTypes": {
  2136. "type": "list",
  2137. "member": {}
  2138. },
  2139. "AcceleratorCount": {
  2140. "type": "structure",
  2141. "members": {
  2142. "Min": {
  2143. "type": "integer"
  2144. },
  2145. "Max": {
  2146. "type": "integer"
  2147. }
  2148. }
  2149. },
  2150. "AcceleratorManufacturers": {
  2151. "type": "list",
  2152. "member": {}
  2153. },
  2154. "AcceleratorNames": {
  2155. "type": "list",
  2156. "member": {}
  2157. },
  2158. "AcceleratorTotalMemoryMiB": {
  2159. "type": "structure",
  2160. "members": {
  2161. "Min": {
  2162. "type": "integer"
  2163. },
  2164. "Max": {
  2165. "type": "integer"
  2166. }
  2167. }
  2168. },
  2169. "NetworkBandwidthGbps": {
  2170. "type": "structure",
  2171. "members": {
  2172. "Min": {
  2173. "type": "double"
  2174. },
  2175. "Max": {
  2176. "type": "double"
  2177. }
  2178. }
  2179. },
  2180. "AllowedInstanceTypes": {
  2181. "type": "list",
  2182. "member": {}
  2183. }
  2184. }
  2185. }
  2186. }
  2187. }
  2188. }
  2189. }
  2190. },
  2191. "InstancesDistribution": {
  2192. "type": "structure",
  2193. "members": {
  2194. "OnDemandAllocationStrategy": {},
  2195. "OnDemandBaseCapacity": {
  2196. "type": "integer"
  2197. },
  2198. "OnDemandPercentageAboveBaseCapacity": {
  2199. "type": "integer"
  2200. },
  2201. "SpotAllocationStrategy": {},
  2202. "SpotInstancePools": {
  2203. "type": "integer"
  2204. },
  2205. "SpotMaxPrice": {}
  2206. }
  2207. }
  2208. }
  2209. },
  2210. "S2d": {
  2211. "type": "list",
  2212. "member": {}
  2213. },
  2214. "S2g": {
  2215. "type": "list",
  2216. "member": {}
  2217. },
  2218. "S2q": {
  2219. "type": "list",
  2220. "member": {
  2221. "type": "structure",
  2222. "required": [
  2223. "Key"
  2224. ],
  2225. "members": {
  2226. "ResourceId": {},
  2227. "ResourceType": {},
  2228. "Key": {},
  2229. "Value": {},
  2230. "PropagateAtLaunch": {
  2231. "type": "boolean"
  2232. }
  2233. }
  2234. }
  2235. },
  2236. "S2y": {
  2237. "type": "structure",
  2238. "members": {
  2239. "MinHealthyPercentage": {
  2240. "type": "integer"
  2241. },
  2242. "MaxHealthyPercentage": {
  2243. "type": "integer"
  2244. }
  2245. }
  2246. },
  2247. "S32": {
  2248. "type": "list",
  2249. "member": {}
  2250. },
  2251. "S33": {
  2252. "type": "list",
  2253. "member": {}
  2254. },
  2255. "S35": {
  2256. "type": "list",
  2257. "member": {
  2258. "type": "structure",
  2259. "required": [
  2260. "DeviceName"
  2261. ],
  2262. "members": {
  2263. "VirtualName": {},
  2264. "DeviceName": {},
  2265. "Ebs": {
  2266. "type": "structure",
  2267. "members": {
  2268. "SnapshotId": {},
  2269. "VolumeSize": {
  2270. "type": "integer"
  2271. },
  2272. "VolumeType": {},
  2273. "DeleteOnTermination": {
  2274. "type": "boolean"
  2275. },
  2276. "Iops": {
  2277. "type": "integer"
  2278. },
  2279. "Encrypted": {
  2280. "type": "boolean"
  2281. },
  2282. "Throughput": {
  2283. "type": "integer"
  2284. }
  2285. }
  2286. },
  2287. "NoDevice": {
  2288. "type": "boolean"
  2289. }
  2290. }
  2291. }
  2292. },
  2293. "S3f": {
  2294. "type": "structure",
  2295. "members": {
  2296. "Enabled": {
  2297. "type": "boolean"
  2298. }
  2299. }
  2300. },
  2301. "S3k": {
  2302. "type": "structure",
  2303. "members": {
  2304. "HttpTokens": {},
  2305. "HttpPutResponseHopLimit": {
  2306. "type": "integer"
  2307. },
  2308. "HttpEndpoint": {}
  2309. }
  2310. },
  2311. "S49": {
  2312. "type": "list",
  2313. "member": {}
  2314. },
  2315. "S4b": {
  2316. "type": "list",
  2317. "member": {
  2318. "type": "structure",
  2319. "members": {
  2320. "Name": {},
  2321. "Values": {
  2322. "type": "list",
  2323. "member": {}
  2324. }
  2325. }
  2326. }
  2327. },
  2328. "S4i": {
  2329. "type": "list",
  2330. "member": {
  2331. "type": "structure",
  2332. "required": [
  2333. "InstanceId",
  2334. "AvailabilityZone",
  2335. "LifecycleState",
  2336. "HealthStatus",
  2337. "ProtectedFromScaleIn"
  2338. ],
  2339. "members": {
  2340. "InstanceId": {},
  2341. "InstanceType": {},
  2342. "AvailabilityZone": {},
  2343. "LifecycleState": {},
  2344. "HealthStatus": {},
  2345. "LaunchConfigurationName": {},
  2346. "LaunchTemplate": {
  2347. "shape": "S14"
  2348. },
  2349. "ProtectedFromScaleIn": {
  2350. "type": "boolean"
  2351. },
  2352. "WeightedCapacity": {}
  2353. }
  2354. }
  2355. },
  2356. "S4p": {
  2357. "type": "list",
  2358. "member": {
  2359. "type": "structure",
  2360. "members": {
  2361. "ResourceId": {},
  2362. "ResourceType": {},
  2363. "Key": {},
  2364. "Value": {},
  2365. "PropagateAtLaunch": {
  2366. "type": "boolean"
  2367. }
  2368. }
  2369. }
  2370. },
  2371. "S4r": {
  2372. "type": "structure",
  2373. "members": {
  2374. "MaxGroupPreparedCapacity": {
  2375. "type": "integer"
  2376. },
  2377. "MinSize": {
  2378. "type": "integer"
  2379. },
  2380. "PoolState": {},
  2381. "Status": {},
  2382. "InstanceReusePolicy": {
  2383. "shape": "S4w"
  2384. }
  2385. }
  2386. },
  2387. "S4w": {
  2388. "type": "structure",
  2389. "members": {
  2390. "ReuseOnScaleIn": {
  2391. "type": "boolean"
  2392. }
  2393. }
  2394. },
  2395. "S54": {
  2396. "type": "list",
  2397. "member": {}
  2398. },
  2399. "S5e": {
  2400. "type": "structure",
  2401. "members": {
  2402. "LivePoolProgress": {
  2403. "type": "structure",
  2404. "members": {
  2405. "PercentageComplete": {
  2406. "type": "integer"
  2407. },
  2408. "InstancesToUpdate": {
  2409. "type": "integer"
  2410. }
  2411. }
  2412. },
  2413. "WarmPoolProgress": {
  2414. "type": "structure",
  2415. "members": {
  2416. "PercentageComplete": {
  2417. "type": "integer"
  2418. },
  2419. "InstancesToUpdate": {
  2420. "type": "integer"
  2421. }
  2422. }
  2423. }
  2424. }
  2425. },
  2426. "S5h": {
  2427. "type": "structure",
  2428. "members": {
  2429. "MinHealthyPercentage": {
  2430. "type": "integer"
  2431. },
  2432. "InstanceWarmup": {
  2433. "type": "integer"
  2434. },
  2435. "CheckpointPercentages": {
  2436. "type": "list",
  2437. "member": {
  2438. "type": "integer"
  2439. }
  2440. },
  2441. "CheckpointDelay": {
  2442. "type": "integer"
  2443. },
  2444. "SkipMatching": {
  2445. "type": "boolean"
  2446. },
  2447. "AutoRollback": {
  2448. "type": "boolean"
  2449. },
  2450. "ScaleInProtectedInstances": {},
  2451. "StandbyInstances": {},
  2452. "AlarmSpecification": {
  2453. "type": "structure",
  2454. "members": {
  2455. "Alarms": {
  2456. "type": "list",
  2457. "member": {}
  2458. }
  2459. }
  2460. },
  2461. "MaxHealthyPercentage": {
  2462. "type": "integer"
  2463. }
  2464. }
  2465. },
  2466. "S5t": {
  2467. "type": "structure",
  2468. "members": {
  2469. "LaunchTemplate": {
  2470. "shape": "S14"
  2471. },
  2472. "MixedInstancesPolicy": {
  2473. "shape": "S16"
  2474. }
  2475. }
  2476. },
  2477. "S6u": {
  2478. "type": "integer",
  2479. "deprecated": true
  2480. },
  2481. "S6x": {
  2482. "type": "list",
  2483. "member": {
  2484. "type": "structure",
  2485. "required": [
  2486. "ScalingAdjustment"
  2487. ],
  2488. "members": {
  2489. "MetricIntervalLowerBound": {
  2490. "type": "double"
  2491. },
  2492. "MetricIntervalUpperBound": {
  2493. "type": "double"
  2494. },
  2495. "ScalingAdjustment": {
  2496. "type": "integer"
  2497. }
  2498. }
  2499. }
  2500. },
  2501. "S71": {
  2502. "type": "list",
  2503. "member": {
  2504. "type": "structure",
  2505. "members": {
  2506. "AlarmName": {},
  2507. "AlarmARN": {}
  2508. }
  2509. }
  2510. },
  2511. "S73": {
  2512. "type": "structure",
  2513. "required": [
  2514. "TargetValue"
  2515. ],
  2516. "members": {
  2517. "PredefinedMetricSpecification": {
  2518. "type": "structure",
  2519. "required": [
  2520. "PredefinedMetricType"
  2521. ],
  2522. "members": {
  2523. "PredefinedMetricType": {},
  2524. "ResourceLabel": {}
  2525. }
  2526. },
  2527. "CustomizedMetricSpecification": {
  2528. "type": "structure",
  2529. "members": {
  2530. "MetricName": {},
  2531. "Namespace": {},
  2532. "Dimensions": {
  2533. "shape": "S79"
  2534. },
  2535. "Statistic": {},
  2536. "Unit": {},
  2537. "Metrics": {
  2538. "type": "list",
  2539. "member": {
  2540. "type": "structure",
  2541. "required": [
  2542. "Id"
  2543. ],
  2544. "members": {
  2545. "Id": {},
  2546. "Expression": {},
  2547. "MetricStat": {
  2548. "type": "structure",
  2549. "required": [
  2550. "Metric",
  2551. "Stat"
  2552. ],
  2553. "members": {
  2554. "Metric": {
  2555. "shape": "S7i"
  2556. },
  2557. "Stat": {},
  2558. "Unit": {}
  2559. }
  2560. },
  2561. "Label": {},
  2562. "ReturnData": {
  2563. "type": "boolean"
  2564. }
  2565. }
  2566. }
  2567. }
  2568. }
  2569. },
  2570. "TargetValue": {
  2571. "type": "double"
  2572. },
  2573. "DisableScaleIn": {
  2574. "type": "boolean"
  2575. }
  2576. }
  2577. },
  2578. "S79": {
  2579. "type": "list",
  2580. "member": {
  2581. "type": "structure",
  2582. "required": [
  2583. "Name",
  2584. "Value"
  2585. ],
  2586. "members": {
  2587. "Name": {},
  2588. "Value": {}
  2589. }
  2590. }
  2591. },
  2592. "S7i": {
  2593. "type": "structure",
  2594. "required": [
  2595. "Namespace",
  2596. "MetricName"
  2597. ],
  2598. "members": {
  2599. "Namespace": {},
  2600. "MetricName": {},
  2601. "Dimensions": {
  2602. "shape": "S79"
  2603. }
  2604. }
  2605. },
  2606. "S7o": {
  2607. "type": "structure",
  2608. "required": [
  2609. "MetricSpecifications"
  2610. ],
  2611. "members": {
  2612. "MetricSpecifications": {
  2613. "type": "list",
  2614. "member": {
  2615. "shape": "S7q"
  2616. }
  2617. },
  2618. "Mode": {},
  2619. "SchedulingBufferTime": {
  2620. "type": "integer"
  2621. },
  2622. "MaxCapacityBreachBehavior": {},
  2623. "MaxCapacityBuffer": {
  2624. "type": "integer"
  2625. }
  2626. }
  2627. },
  2628. "S7q": {
  2629. "type": "structure",
  2630. "required": [
  2631. "TargetValue"
  2632. ],
  2633. "members": {
  2634. "TargetValue": {
  2635. "type": "double"
  2636. },
  2637. "PredefinedMetricPairSpecification": {
  2638. "type": "structure",
  2639. "required": [
  2640. "PredefinedMetricType"
  2641. ],
  2642. "members": {
  2643. "PredefinedMetricType": {},
  2644. "ResourceLabel": {}
  2645. }
  2646. },
  2647. "PredefinedScalingMetricSpecification": {
  2648. "type": "structure",
  2649. "required": [
  2650. "PredefinedMetricType"
  2651. ],
  2652. "members": {
  2653. "PredefinedMetricType": {},
  2654. "ResourceLabel": {}
  2655. }
  2656. },
  2657. "PredefinedLoadMetricSpecification": {
  2658. "type": "structure",
  2659. "required": [
  2660. "PredefinedMetricType"
  2661. ],
  2662. "members": {
  2663. "PredefinedMetricType": {},
  2664. "ResourceLabel": {}
  2665. }
  2666. },
  2667. "CustomizedScalingMetricSpecification": {
  2668. "type": "structure",
  2669. "required": [
  2670. "MetricDataQueries"
  2671. ],
  2672. "members": {
  2673. "MetricDataQueries": {
  2674. "shape": "S7y"
  2675. }
  2676. }
  2677. },
  2678. "CustomizedLoadMetricSpecification": {
  2679. "type": "structure",
  2680. "required": [
  2681. "MetricDataQueries"
  2682. ],
  2683. "members": {
  2684. "MetricDataQueries": {
  2685. "shape": "S7y"
  2686. }
  2687. }
  2688. },
  2689. "CustomizedCapacityMetricSpecification": {
  2690. "type": "structure",
  2691. "required": [
  2692. "MetricDataQueries"
  2693. ],
  2694. "members": {
  2695. "MetricDataQueries": {
  2696. "shape": "S7y"
  2697. }
  2698. }
  2699. }
  2700. }
  2701. },
  2702. "S7y": {
  2703. "type": "list",
  2704. "member": {
  2705. "type": "structure",
  2706. "required": [
  2707. "Id"
  2708. ],
  2709. "members": {
  2710. "Id": {},
  2711. "Expression": {},
  2712. "MetricStat": {
  2713. "type": "structure",
  2714. "required": [
  2715. "Metric",
  2716. "Stat"
  2717. ],
  2718. "members": {
  2719. "Metric": {
  2720. "shape": "S7i"
  2721. },
  2722. "Stat": {},
  2723. "Unit": {}
  2724. }
  2725. },
  2726. "Label": {},
  2727. "ReturnData": {
  2728. "type": "boolean"
  2729. }
  2730. }
  2731. }
  2732. },
  2733. "S8b": {
  2734. "type": "list",
  2735. "member": {
  2736. "shape": "S8c"
  2737. }
  2738. },
  2739. "S8c": {
  2740. "type": "structure",
  2741. "required": [
  2742. "ActivityId",
  2743. "AutoScalingGroupName",
  2744. "Cause",
  2745. "StartTime",
  2746. "StatusCode"
  2747. ],
  2748. "members": {
  2749. "ActivityId": {},
  2750. "AutoScalingGroupName": {},
  2751. "Description": {},
  2752. "Cause": {},
  2753. "StartTime": {
  2754. "type": "timestamp"
  2755. },
  2756. "EndTime": {
  2757. "type": "timestamp"
  2758. },
  2759. "StatusCode": {},
  2760. "StatusMessage": {},
  2761. "Progress": {
  2762. "type": "integer"
  2763. },
  2764. "Details": {},
  2765. "AutoScalingGroupState": {},
  2766. "AutoScalingGroupARN": {}
  2767. }
  2768. },
  2769. "S96": {
  2770. "type": "list",
  2771. "member": {}
  2772. },
  2773. "S9i": {
  2774. "type": "list",
  2775. "member": {
  2776. "type": "timestamp"
  2777. }
  2778. },
  2779. "S9j": {
  2780. "type": "list",
  2781. "member": {
  2782. "type": "double"
  2783. }
  2784. },
  2785. "S9v": {
  2786. "type": "structure",
  2787. "required": [
  2788. "AutoScalingGroupName"
  2789. ],
  2790. "members": {
  2791. "AutoScalingGroupName": {},
  2792. "ScalingProcesses": {
  2793. "type": "list",
  2794. "member": {}
  2795. }
  2796. }
  2797. }
  2798. }
  2799. }