api-2.json 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. {
  2. "version":"2.0",
  3. "metadata":{
  4. "apiVersion":"2015-07-27",
  5. "endpointPrefix":"cloudfront",
  6. "globalEndpoint":"cloudfront.amazonaws.com",
  7. "serviceAbbreviation":"CloudFront",
  8. "serviceFullName":"Amazon CloudFront",
  9. "signatureVersion":"v4",
  10. "protocol":"rest-xml"
  11. },
  12. "operations":{
  13. "CreateCloudFrontOriginAccessIdentity":{
  14. "name":"CreateCloudFrontOriginAccessIdentity2015_07_27",
  15. "http":{
  16. "method":"POST",
  17. "requestUri":"/2015-07-27/origin-access-identity/cloudfront",
  18. "responseCode":201
  19. },
  20. "input":{"shape":"CreateCloudFrontOriginAccessIdentityRequest"},
  21. "output":{"shape":"CreateCloudFrontOriginAccessIdentityResult"},
  22. "errors":[
  23. {
  24. "shape":"CloudFrontOriginAccessIdentityAlreadyExists",
  25. "error":{"httpStatusCode":409},
  26. "exception":true
  27. },
  28. {
  29. "shape":"MissingBody",
  30. "error":{"httpStatusCode":400},
  31. "exception":true
  32. },
  33. {
  34. "shape":"TooManyCloudFrontOriginAccessIdentities",
  35. "error":{"httpStatusCode":400},
  36. "exception":true
  37. },
  38. {
  39. "shape":"InvalidArgument",
  40. "error":{"httpStatusCode":400},
  41. "exception":true
  42. },
  43. {
  44. "shape":"InconsistentQuantities",
  45. "error":{"httpStatusCode":400},
  46. "exception":true
  47. }
  48. ]
  49. },
  50. "CreateDistribution":{
  51. "name":"CreateDistribution2015_07_27",
  52. "http":{
  53. "method":"POST",
  54. "requestUri":"/2015-07-27/distribution",
  55. "responseCode":201
  56. },
  57. "input":{"shape":"CreateDistributionRequest"},
  58. "output":{"shape":"CreateDistributionResult"},
  59. "errors":[
  60. {
  61. "shape":"CNAMEAlreadyExists",
  62. "error":{"httpStatusCode":409},
  63. "exception":true
  64. },
  65. {
  66. "shape":"DistributionAlreadyExists",
  67. "error":{"httpStatusCode":409},
  68. "exception":true
  69. },
  70. {
  71. "shape":"InvalidOrigin",
  72. "error":{"httpStatusCode":400},
  73. "exception":true
  74. },
  75. {
  76. "shape":"InvalidOriginAccessIdentity",
  77. "error":{"httpStatusCode":400},
  78. "exception":true
  79. },
  80. {
  81. "shape":"AccessDenied",
  82. "error":{"httpStatusCode":403},
  83. "exception":true
  84. },
  85. {
  86. "shape":"TooManyTrustedSigners",
  87. "error":{"httpStatusCode":400},
  88. "exception":true
  89. },
  90. {
  91. "shape":"TrustedSignerDoesNotExist",
  92. "error":{"httpStatusCode":400},
  93. "exception":true
  94. },
  95. {
  96. "shape":"InvalidViewerCertificate",
  97. "error":{"httpStatusCode":400},
  98. "exception":true
  99. },
  100. {
  101. "shape":"InvalidMinimumProtocolVersion",
  102. "error":{"httpStatusCode":400},
  103. "exception":true
  104. },
  105. {
  106. "shape":"MissingBody",
  107. "error":{"httpStatusCode":400},
  108. "exception":true
  109. },
  110. {
  111. "shape":"TooManyDistributionCNAMEs",
  112. "error":{"httpStatusCode":400},
  113. "exception":true
  114. },
  115. {
  116. "shape":"TooManyDistributions",
  117. "error":{"httpStatusCode":400},
  118. "exception":true
  119. },
  120. {
  121. "shape":"InvalidDefaultRootObject",
  122. "error":{"httpStatusCode":400},
  123. "exception":true
  124. },
  125. {
  126. "shape":"InvalidRelativePath",
  127. "error":{"httpStatusCode":400},
  128. "exception":true
  129. },
  130. {
  131. "shape":"InvalidErrorCode",
  132. "error":{"httpStatusCode":400},
  133. "exception":true
  134. },
  135. {
  136. "shape":"InvalidResponseCode",
  137. "error":{"httpStatusCode":400},
  138. "exception":true
  139. },
  140. {
  141. "shape":"InvalidArgument",
  142. "error":{"httpStatusCode":400},
  143. "exception":true
  144. },
  145. {
  146. "shape":"InvalidRequiredProtocol",
  147. "error":{"httpStatusCode":400},
  148. "exception":true
  149. },
  150. {
  151. "shape":"NoSuchOrigin",
  152. "error":{"httpStatusCode":404},
  153. "exception":true
  154. },
  155. {
  156. "shape":"TooManyOrigins",
  157. "error":{"httpStatusCode":400},
  158. "exception":true
  159. },
  160. {
  161. "shape":"TooManyCacheBehaviors",
  162. "error":{"httpStatusCode":400},
  163. "exception":true
  164. },
  165. {
  166. "shape":"TooManyCookieNamesInWhiteList",
  167. "error":{"httpStatusCode":400},
  168. "exception":true
  169. },
  170. {
  171. "shape":"InvalidForwardCookies",
  172. "error":{"httpStatusCode":400},
  173. "exception":true
  174. },
  175. {
  176. "shape":"TooManyHeadersInForwardedValues",
  177. "error":{"httpStatusCode":400},
  178. "exception":true
  179. },
  180. {
  181. "shape":"InvalidHeadersForS3Origin",
  182. "error":{"httpStatusCode":400},
  183. "exception":true
  184. },
  185. {
  186. "shape":"InconsistentQuantities",
  187. "error":{"httpStatusCode":400},
  188. "exception":true
  189. },
  190. {
  191. "shape":"TooManyCertificates",
  192. "error":{"httpStatusCode":400},
  193. "exception":true
  194. },
  195. {
  196. "shape":"InvalidLocationCode",
  197. "error":{"httpStatusCode":400},
  198. "exception":true
  199. },
  200. {
  201. "shape":"InvalidGeoRestrictionParameter",
  202. "error":{"httpStatusCode":400},
  203. "exception":true
  204. },
  205. {
  206. "shape":"InvalidProtocolSettings",
  207. "error":{"httpStatusCode":400},
  208. "exception":true
  209. },
  210. {
  211. "shape":"InvalidTTLOrder",
  212. "error":{"httpStatusCode":400},
  213. "exception":true
  214. },
  215. {
  216. "shape":"InvalidWebACLId",
  217. "error":{"httpStatusCode":400},
  218. "exception":true
  219. }
  220. ]
  221. },
  222. "CreateInvalidation":{
  223. "name":"CreateInvalidation2015_07_27",
  224. "http":{
  225. "method":"POST",
  226. "requestUri":"/2015-07-27/distribution/{DistributionId}/invalidation",
  227. "responseCode":201
  228. },
  229. "input":{"shape":"CreateInvalidationRequest"},
  230. "output":{"shape":"CreateInvalidationResult"},
  231. "errors":[
  232. {
  233. "shape":"AccessDenied",
  234. "error":{"httpStatusCode":403},
  235. "exception":true
  236. },
  237. {
  238. "shape":"MissingBody",
  239. "error":{"httpStatusCode":400},
  240. "exception":true
  241. },
  242. {
  243. "shape":"InvalidArgument",
  244. "error":{"httpStatusCode":400},
  245. "exception":true
  246. },
  247. {
  248. "shape":"NoSuchDistribution",
  249. "error":{"httpStatusCode":404},
  250. "exception":true
  251. },
  252. {
  253. "shape":"BatchTooLarge",
  254. "error":{"httpStatusCode":413},
  255. "exception":true
  256. },
  257. {
  258. "shape":"TooManyInvalidationsInProgress",
  259. "error":{"httpStatusCode":400},
  260. "exception":true
  261. },
  262. {
  263. "shape":"InconsistentQuantities",
  264. "error":{"httpStatusCode":400},
  265. "exception":true
  266. }
  267. ]
  268. },
  269. "CreateStreamingDistribution":{
  270. "name":"CreateStreamingDistribution2015_07_27",
  271. "http":{
  272. "method":"POST",
  273. "requestUri":"/2015-07-27/streaming-distribution",
  274. "responseCode":201
  275. },
  276. "input":{"shape":"CreateStreamingDistributionRequest"},
  277. "output":{"shape":"CreateStreamingDistributionResult"},
  278. "errors":[
  279. {
  280. "shape":"CNAMEAlreadyExists",
  281. "error":{"httpStatusCode":409},
  282. "exception":true
  283. },
  284. {
  285. "shape":"StreamingDistributionAlreadyExists",
  286. "error":{"httpStatusCode":409},
  287. "exception":true
  288. },
  289. {
  290. "shape":"InvalidOrigin",
  291. "error":{"httpStatusCode":400},
  292. "exception":true
  293. },
  294. {
  295. "shape":"InvalidOriginAccessIdentity",
  296. "error":{"httpStatusCode":400},
  297. "exception":true
  298. },
  299. {
  300. "shape":"AccessDenied",
  301. "error":{"httpStatusCode":403},
  302. "exception":true
  303. },
  304. {
  305. "shape":"TooManyTrustedSigners",
  306. "error":{"httpStatusCode":400},
  307. "exception":true
  308. },
  309. {
  310. "shape":"TrustedSignerDoesNotExist",
  311. "error":{"httpStatusCode":400},
  312. "exception":true
  313. },
  314. {
  315. "shape":"MissingBody",
  316. "error":{"httpStatusCode":400},
  317. "exception":true
  318. },
  319. {
  320. "shape":"TooManyStreamingDistributionCNAMEs",
  321. "error":{"httpStatusCode":400},
  322. "exception":true
  323. },
  324. {
  325. "shape":"TooManyStreamingDistributions",
  326. "error":{"httpStatusCode":400},
  327. "exception":true
  328. },
  329. {
  330. "shape":"InvalidArgument",
  331. "error":{"httpStatusCode":400},
  332. "exception":true
  333. },
  334. {
  335. "shape":"InconsistentQuantities",
  336. "error":{"httpStatusCode":400},
  337. "exception":true
  338. }
  339. ]
  340. },
  341. "DeleteCloudFrontOriginAccessIdentity":{
  342. "name":"DeleteCloudFrontOriginAccessIdentity2015_07_27",
  343. "http":{
  344. "method":"DELETE",
  345. "requestUri":"/2015-07-27/origin-access-identity/cloudfront/{Id}",
  346. "responseCode":204
  347. },
  348. "input":{"shape":"DeleteCloudFrontOriginAccessIdentityRequest"},
  349. "errors":[
  350. {
  351. "shape":"AccessDenied",
  352. "error":{"httpStatusCode":403},
  353. "exception":true
  354. },
  355. {
  356. "shape":"InvalidIfMatchVersion",
  357. "error":{"httpStatusCode":400},
  358. "exception":true
  359. },
  360. {
  361. "shape":"NoSuchCloudFrontOriginAccessIdentity",
  362. "error":{"httpStatusCode":404},
  363. "exception":true
  364. },
  365. {
  366. "shape":"PreconditionFailed",
  367. "error":{"httpStatusCode":412},
  368. "exception":true
  369. },
  370. {
  371. "shape":"CloudFrontOriginAccessIdentityInUse",
  372. "error":{"httpStatusCode":409},
  373. "exception":true
  374. }
  375. ]
  376. },
  377. "DeleteDistribution":{
  378. "name":"DeleteDistribution2015_07_27",
  379. "http":{
  380. "method":"DELETE",
  381. "requestUri":"/2015-07-27/distribution/{Id}",
  382. "responseCode":204
  383. },
  384. "input":{"shape":"DeleteDistributionRequest"},
  385. "errors":[
  386. {
  387. "shape":"AccessDenied",
  388. "error":{"httpStatusCode":403},
  389. "exception":true
  390. },
  391. {
  392. "shape":"DistributionNotDisabled",
  393. "error":{"httpStatusCode":409},
  394. "exception":true
  395. },
  396. {
  397. "shape":"InvalidIfMatchVersion",
  398. "error":{"httpStatusCode":400},
  399. "exception":true
  400. },
  401. {
  402. "shape":"NoSuchDistribution",
  403. "error":{"httpStatusCode":404},
  404. "exception":true
  405. },
  406. {
  407. "shape":"PreconditionFailed",
  408. "error":{"httpStatusCode":412},
  409. "exception":true
  410. }
  411. ]
  412. },
  413. "DeleteStreamingDistribution":{
  414. "name":"DeleteStreamingDistribution2015_07_27",
  415. "http":{
  416. "method":"DELETE",
  417. "requestUri":"/2015-07-27/streaming-distribution/{Id}",
  418. "responseCode":204
  419. },
  420. "input":{"shape":"DeleteStreamingDistributionRequest"},
  421. "errors":[
  422. {
  423. "shape":"AccessDenied",
  424. "error":{"httpStatusCode":403},
  425. "exception":true
  426. },
  427. {
  428. "shape":"StreamingDistributionNotDisabled",
  429. "error":{"httpStatusCode":409},
  430. "exception":true
  431. },
  432. {
  433. "shape":"InvalidIfMatchVersion",
  434. "error":{"httpStatusCode":400},
  435. "exception":true
  436. },
  437. {
  438. "shape":"NoSuchStreamingDistribution",
  439. "error":{"httpStatusCode":404},
  440. "exception":true
  441. },
  442. {
  443. "shape":"PreconditionFailed",
  444. "error":{"httpStatusCode":412},
  445. "exception":true
  446. }
  447. ]
  448. },
  449. "GetCloudFrontOriginAccessIdentity":{
  450. "name":"GetCloudFrontOriginAccessIdentity2015_07_27",
  451. "http":{
  452. "method":"GET",
  453. "requestUri":"/2015-07-27/origin-access-identity/cloudfront/{Id}"
  454. },
  455. "input":{"shape":"GetCloudFrontOriginAccessIdentityRequest"},
  456. "output":{"shape":"GetCloudFrontOriginAccessIdentityResult"},
  457. "errors":[
  458. {
  459. "shape":"NoSuchCloudFrontOriginAccessIdentity",
  460. "error":{"httpStatusCode":404},
  461. "exception":true
  462. },
  463. {
  464. "shape":"AccessDenied",
  465. "error":{"httpStatusCode":403},
  466. "exception":true
  467. }
  468. ]
  469. },
  470. "GetCloudFrontOriginAccessIdentityConfig":{
  471. "name":"GetCloudFrontOriginAccessIdentityConfig2015_07_27",
  472. "http":{
  473. "method":"GET",
  474. "requestUri":"/2015-07-27/origin-access-identity/cloudfront/{Id}/config"
  475. },
  476. "input":{"shape":"GetCloudFrontOriginAccessIdentityConfigRequest"},
  477. "output":{"shape":"GetCloudFrontOriginAccessIdentityConfigResult"},
  478. "errors":[
  479. {
  480. "shape":"NoSuchCloudFrontOriginAccessIdentity",
  481. "error":{"httpStatusCode":404},
  482. "exception":true
  483. },
  484. {
  485. "shape":"AccessDenied",
  486. "error":{"httpStatusCode":403},
  487. "exception":true
  488. }
  489. ]
  490. },
  491. "GetDistribution":{
  492. "name":"GetDistribution2015_07_27",
  493. "http":{
  494. "method":"GET",
  495. "requestUri":"/2015-07-27/distribution/{Id}"
  496. },
  497. "input":{"shape":"GetDistributionRequest"},
  498. "output":{"shape":"GetDistributionResult"},
  499. "errors":[
  500. {
  501. "shape":"NoSuchDistribution",
  502. "error":{"httpStatusCode":404},
  503. "exception":true
  504. },
  505. {
  506. "shape":"AccessDenied",
  507. "error":{"httpStatusCode":403},
  508. "exception":true
  509. }
  510. ]
  511. },
  512. "GetDistributionConfig":{
  513. "name":"GetDistributionConfig2015_07_27",
  514. "http":{
  515. "method":"GET",
  516. "requestUri":"/2015-07-27/distribution/{Id}/config"
  517. },
  518. "input":{"shape":"GetDistributionConfigRequest"},
  519. "output":{"shape":"GetDistributionConfigResult"},
  520. "errors":[
  521. {
  522. "shape":"NoSuchDistribution",
  523. "error":{"httpStatusCode":404},
  524. "exception":true
  525. },
  526. {
  527. "shape":"AccessDenied",
  528. "error":{"httpStatusCode":403},
  529. "exception":true
  530. }
  531. ]
  532. },
  533. "GetInvalidation":{
  534. "name":"GetInvalidation2015_07_27",
  535. "http":{
  536. "method":"GET",
  537. "requestUri":"/2015-07-27/distribution/{DistributionId}/invalidation/{Id}"
  538. },
  539. "input":{"shape":"GetInvalidationRequest"},
  540. "output":{"shape":"GetInvalidationResult"},
  541. "errors":[
  542. {
  543. "shape":"NoSuchInvalidation",
  544. "error":{"httpStatusCode":404},
  545. "exception":true
  546. },
  547. {
  548. "shape":"NoSuchDistribution",
  549. "error":{"httpStatusCode":404},
  550. "exception":true
  551. },
  552. {
  553. "shape":"AccessDenied",
  554. "error":{"httpStatusCode":403},
  555. "exception":true
  556. }
  557. ]
  558. },
  559. "GetStreamingDistribution":{
  560. "name":"GetStreamingDistribution2015_07_27",
  561. "http":{
  562. "method":"GET",
  563. "requestUri":"/2015-07-27/streaming-distribution/{Id}"
  564. },
  565. "input":{"shape":"GetStreamingDistributionRequest"},
  566. "output":{"shape":"GetStreamingDistributionResult"},
  567. "errors":[
  568. {
  569. "shape":"NoSuchStreamingDistribution",
  570. "error":{"httpStatusCode":404},
  571. "exception":true
  572. },
  573. {
  574. "shape":"AccessDenied",
  575. "error":{"httpStatusCode":403},
  576. "exception":true
  577. }
  578. ]
  579. },
  580. "GetStreamingDistributionConfig":{
  581. "name":"GetStreamingDistributionConfig2015_07_27",
  582. "http":{
  583. "method":"GET",
  584. "requestUri":"/2015-07-27/streaming-distribution/{Id}/config"
  585. },
  586. "input":{"shape":"GetStreamingDistributionConfigRequest"},
  587. "output":{"shape":"GetStreamingDistributionConfigResult"},
  588. "errors":[
  589. {
  590. "shape":"NoSuchStreamingDistribution",
  591. "error":{"httpStatusCode":404},
  592. "exception":true
  593. },
  594. {
  595. "shape":"AccessDenied",
  596. "error":{"httpStatusCode":403},
  597. "exception":true
  598. }
  599. ]
  600. },
  601. "ListCloudFrontOriginAccessIdentities":{
  602. "name":"ListCloudFrontOriginAccessIdentities2015_07_27",
  603. "http":{
  604. "method":"GET",
  605. "requestUri":"/2015-07-27/origin-access-identity/cloudfront"
  606. },
  607. "input":{"shape":"ListCloudFrontOriginAccessIdentitiesRequest"},
  608. "output":{"shape":"ListCloudFrontOriginAccessIdentitiesResult"},
  609. "errors":[
  610. {
  611. "shape":"InvalidArgument",
  612. "error":{"httpStatusCode":400},
  613. "exception":true
  614. }
  615. ]
  616. },
  617. "ListDistributions":{
  618. "name":"ListDistributions2015_07_27",
  619. "http":{
  620. "method":"GET",
  621. "requestUri":"/2015-07-27/distribution"
  622. },
  623. "input":{"shape":"ListDistributionsRequest"},
  624. "output":{"shape":"ListDistributionsResult"},
  625. "errors":[
  626. {
  627. "shape":"InvalidArgument",
  628. "error":{"httpStatusCode":400},
  629. "exception":true
  630. }
  631. ]
  632. },
  633. "ListDistributionsByWebACLId":{
  634. "name":"ListDistributionsByWebACLId2015_07_27",
  635. "http":{
  636. "method":"GET",
  637. "requestUri":"/2015-07-27/distributionsByWebACLId/{WebACLId}"
  638. },
  639. "input":{"shape":"ListDistributionsByWebACLIdRequest"},
  640. "output":{"shape":"ListDistributionsByWebACLIdResult"},
  641. "errors":[
  642. {
  643. "shape":"InvalidArgument",
  644. "error":{"httpStatusCode":400},
  645. "exception":true
  646. },
  647. {
  648. "shape":"InvalidWebACLId",
  649. "error":{"httpStatusCode":400},
  650. "exception":true
  651. }
  652. ]
  653. },
  654. "ListInvalidations":{
  655. "name":"ListInvalidations2015_07_27",
  656. "http":{
  657. "method":"GET",
  658. "requestUri":"/2015-07-27/distribution/{DistributionId}/invalidation"
  659. },
  660. "input":{"shape":"ListInvalidationsRequest"},
  661. "output":{"shape":"ListInvalidationsResult"},
  662. "errors":[
  663. {
  664. "shape":"InvalidArgument",
  665. "error":{"httpStatusCode":400},
  666. "exception":true
  667. },
  668. {
  669. "shape":"NoSuchDistribution",
  670. "error":{"httpStatusCode":404},
  671. "exception":true
  672. },
  673. {
  674. "shape":"AccessDenied",
  675. "error":{"httpStatusCode":403},
  676. "exception":true
  677. }
  678. ]
  679. },
  680. "ListStreamingDistributions":{
  681. "name":"ListStreamingDistributions2015_07_27",
  682. "http":{
  683. "method":"GET",
  684. "requestUri":"/2015-07-27/streaming-distribution"
  685. },
  686. "input":{"shape":"ListStreamingDistributionsRequest"},
  687. "output":{"shape":"ListStreamingDistributionsResult"},
  688. "errors":[
  689. {
  690. "shape":"InvalidArgument",
  691. "error":{"httpStatusCode":400},
  692. "exception":true
  693. }
  694. ]
  695. },
  696. "UpdateCloudFrontOriginAccessIdentity":{
  697. "name":"UpdateCloudFrontOriginAccessIdentity2015_07_27",
  698. "http":{
  699. "method":"PUT",
  700. "requestUri":"/2015-07-27/origin-access-identity/cloudfront/{Id}/config"
  701. },
  702. "input":{"shape":"UpdateCloudFrontOriginAccessIdentityRequest"},
  703. "output":{"shape":"UpdateCloudFrontOriginAccessIdentityResult"},
  704. "errors":[
  705. {
  706. "shape":"AccessDenied",
  707. "error":{"httpStatusCode":403},
  708. "exception":true
  709. },
  710. {
  711. "shape":"IllegalUpdate",
  712. "error":{"httpStatusCode":400},
  713. "exception":true
  714. },
  715. {
  716. "shape":"InvalidIfMatchVersion",
  717. "error":{"httpStatusCode":400},
  718. "exception":true
  719. },
  720. {
  721. "shape":"MissingBody",
  722. "error":{"httpStatusCode":400},
  723. "exception":true
  724. },
  725. {
  726. "shape":"NoSuchCloudFrontOriginAccessIdentity",
  727. "error":{"httpStatusCode":404},
  728. "exception":true
  729. },
  730. {
  731. "shape":"PreconditionFailed",
  732. "error":{"httpStatusCode":412},
  733. "exception":true
  734. },
  735. {
  736. "shape":"InvalidArgument",
  737. "error":{"httpStatusCode":400},
  738. "exception":true
  739. },
  740. {
  741. "shape":"InconsistentQuantities",
  742. "error":{"httpStatusCode":400},
  743. "exception":true
  744. }
  745. ]
  746. },
  747. "UpdateDistribution":{
  748. "name":"UpdateDistribution2015_07_27",
  749. "http":{
  750. "method":"PUT",
  751. "requestUri":"/2015-07-27/distribution/{Id}/config"
  752. },
  753. "input":{"shape":"UpdateDistributionRequest"},
  754. "output":{"shape":"UpdateDistributionResult"},
  755. "errors":[
  756. {
  757. "shape":"AccessDenied",
  758. "error":{"httpStatusCode":403},
  759. "exception":true
  760. },
  761. {
  762. "shape":"CNAMEAlreadyExists",
  763. "error":{"httpStatusCode":409},
  764. "exception":true
  765. },
  766. {
  767. "shape":"IllegalUpdate",
  768. "error":{"httpStatusCode":400},
  769. "exception":true
  770. },
  771. {
  772. "shape":"InvalidIfMatchVersion",
  773. "error":{"httpStatusCode":400},
  774. "exception":true
  775. },
  776. {
  777. "shape":"MissingBody",
  778. "error":{"httpStatusCode":400},
  779. "exception":true
  780. },
  781. {
  782. "shape":"NoSuchDistribution",
  783. "error":{"httpStatusCode":404},
  784. "exception":true
  785. },
  786. {
  787. "shape":"PreconditionFailed",
  788. "error":{"httpStatusCode":412},
  789. "exception":true
  790. },
  791. {
  792. "shape":"TooManyDistributionCNAMEs",
  793. "error":{"httpStatusCode":400},
  794. "exception":true
  795. },
  796. {
  797. "shape":"InvalidDefaultRootObject",
  798. "error":{"httpStatusCode":400},
  799. "exception":true
  800. },
  801. {
  802. "shape":"InvalidRelativePath",
  803. "error":{"httpStatusCode":400},
  804. "exception":true
  805. },
  806. {
  807. "shape":"InvalidErrorCode",
  808. "error":{"httpStatusCode":400},
  809. "exception":true
  810. },
  811. {
  812. "shape":"InvalidResponseCode",
  813. "error":{"httpStatusCode":400},
  814. "exception":true
  815. },
  816. {
  817. "shape":"InvalidArgument",
  818. "error":{"httpStatusCode":400},
  819. "exception":true
  820. },
  821. {
  822. "shape":"InvalidOriginAccessIdentity",
  823. "error":{"httpStatusCode":400},
  824. "exception":true
  825. },
  826. {
  827. "shape":"TooManyTrustedSigners",
  828. "error":{"httpStatusCode":400},
  829. "exception":true
  830. },
  831. {
  832. "shape":"TrustedSignerDoesNotExist",
  833. "error":{"httpStatusCode":400},
  834. "exception":true
  835. },
  836. {
  837. "shape":"InvalidViewerCertificate",
  838. "error":{"httpStatusCode":400},
  839. "exception":true
  840. },
  841. {
  842. "shape":"InvalidMinimumProtocolVersion",
  843. "error":{"httpStatusCode":400},
  844. "exception":true
  845. },
  846. {
  847. "shape":"InvalidRequiredProtocol",
  848. "error":{"httpStatusCode":400},
  849. "exception":true
  850. },
  851. {
  852. "shape":"NoSuchOrigin",
  853. "error":{"httpStatusCode":404},
  854. "exception":true
  855. },
  856. {
  857. "shape":"TooManyOrigins",
  858. "error":{"httpStatusCode":400},
  859. "exception":true
  860. },
  861. {
  862. "shape":"TooManyCacheBehaviors",
  863. "error":{"httpStatusCode":400},
  864. "exception":true
  865. },
  866. {
  867. "shape":"TooManyCookieNamesInWhiteList",
  868. "error":{"httpStatusCode":400},
  869. "exception":true
  870. },
  871. {
  872. "shape":"InvalidForwardCookies",
  873. "error":{"httpStatusCode":400},
  874. "exception":true
  875. },
  876. {
  877. "shape":"TooManyHeadersInForwardedValues",
  878. "error":{"httpStatusCode":400},
  879. "exception":true
  880. },
  881. {
  882. "shape":"InvalidHeadersForS3Origin",
  883. "error":{"httpStatusCode":400},
  884. "exception":true
  885. },
  886. {
  887. "shape":"InconsistentQuantities",
  888. "error":{"httpStatusCode":400},
  889. "exception":true
  890. },
  891. {
  892. "shape":"TooManyCertificates",
  893. "error":{"httpStatusCode":400},
  894. "exception":true
  895. },
  896. {
  897. "shape":"InvalidLocationCode",
  898. "error":{"httpStatusCode":400},
  899. "exception":true
  900. },
  901. {
  902. "shape":"InvalidGeoRestrictionParameter",
  903. "error":{"httpStatusCode":400},
  904. "exception":true
  905. },
  906. {
  907. "shape":"InvalidTTLOrder",
  908. "error":{"httpStatusCode":400},
  909. "exception":true
  910. },
  911. {
  912. "shape":"InvalidWebACLId",
  913. "error":{"httpStatusCode":400},
  914. "exception":true
  915. }
  916. ]
  917. },
  918. "UpdateStreamingDistribution":{
  919. "name":"UpdateStreamingDistribution2015_07_27",
  920. "http":{
  921. "method":"PUT",
  922. "requestUri":"/2015-07-27/streaming-distribution/{Id}/config"
  923. },
  924. "input":{"shape":"UpdateStreamingDistributionRequest"},
  925. "output":{"shape":"UpdateStreamingDistributionResult"},
  926. "errors":[
  927. {
  928. "shape":"AccessDenied",
  929. "error":{"httpStatusCode":403},
  930. "exception":true
  931. },
  932. {
  933. "shape":"CNAMEAlreadyExists",
  934. "error":{"httpStatusCode":409},
  935. "exception":true
  936. },
  937. {
  938. "shape":"IllegalUpdate",
  939. "error":{"httpStatusCode":400},
  940. "exception":true
  941. },
  942. {
  943. "shape":"InvalidIfMatchVersion",
  944. "error":{"httpStatusCode":400},
  945. "exception":true
  946. },
  947. {
  948. "shape":"MissingBody",
  949. "error":{"httpStatusCode":400},
  950. "exception":true
  951. },
  952. {
  953. "shape":"NoSuchStreamingDistribution",
  954. "error":{"httpStatusCode":404},
  955. "exception":true
  956. },
  957. {
  958. "shape":"PreconditionFailed",
  959. "error":{"httpStatusCode":412},
  960. "exception":true
  961. },
  962. {
  963. "shape":"TooManyStreamingDistributionCNAMEs",
  964. "error":{"httpStatusCode":400},
  965. "exception":true
  966. },
  967. {
  968. "shape":"InvalidArgument",
  969. "error":{"httpStatusCode":400},
  970. "exception":true
  971. },
  972. {
  973. "shape":"InvalidOriginAccessIdentity",
  974. "error":{"httpStatusCode":400},
  975. "exception":true
  976. },
  977. {
  978. "shape":"TooManyTrustedSigners",
  979. "error":{"httpStatusCode":400},
  980. "exception":true
  981. },
  982. {
  983. "shape":"TrustedSignerDoesNotExist",
  984. "error":{"httpStatusCode":400},
  985. "exception":true
  986. },
  987. {
  988. "shape":"InconsistentQuantities",
  989. "error":{"httpStatusCode":400},
  990. "exception":true
  991. }
  992. ]
  993. }
  994. },
  995. "shapes":{
  996. "AccessDenied":{
  997. "type":"structure",
  998. "members":{
  999. "Message":{"shape":"string"}
  1000. },
  1001. "error":{"httpStatusCode":403},
  1002. "exception":true
  1003. },
  1004. "ActiveTrustedSigners":{
  1005. "type":"structure",
  1006. "required":[
  1007. "Enabled",
  1008. "Quantity"
  1009. ],
  1010. "members":{
  1011. "Enabled":{"shape":"boolean"},
  1012. "Quantity":{"shape":"integer"},
  1013. "Items":{"shape":"SignerList"}
  1014. }
  1015. },
  1016. "AliasList":{
  1017. "type":"list",
  1018. "member":{
  1019. "shape":"string",
  1020. "locationName":"CNAME"
  1021. }
  1022. },
  1023. "Aliases":{
  1024. "type":"structure",
  1025. "required":["Quantity"],
  1026. "members":{
  1027. "Quantity":{"shape":"integer"},
  1028. "Items":{"shape":"AliasList"}
  1029. }
  1030. },
  1031. "AllowedMethods":{
  1032. "type":"structure",
  1033. "required":[
  1034. "Quantity",
  1035. "Items"
  1036. ],
  1037. "members":{
  1038. "Quantity":{"shape":"integer"},
  1039. "Items":{"shape":"MethodsList"},
  1040. "CachedMethods":{"shape":"CachedMethods"}
  1041. }
  1042. },
  1043. "AwsAccountNumberList":{
  1044. "type":"list",
  1045. "member":{
  1046. "shape":"string",
  1047. "locationName":"AwsAccountNumber"
  1048. }
  1049. },
  1050. "BatchTooLarge":{
  1051. "type":"structure",
  1052. "members":{
  1053. "Message":{"shape":"string"}
  1054. },
  1055. "error":{"httpStatusCode":413},
  1056. "exception":true
  1057. },
  1058. "CNAMEAlreadyExists":{
  1059. "type":"structure",
  1060. "members":{
  1061. "Message":{"shape":"string"}
  1062. },
  1063. "error":{"httpStatusCode":409},
  1064. "exception":true
  1065. },
  1066. "CacheBehavior":{
  1067. "type":"structure",
  1068. "required":[
  1069. "PathPattern",
  1070. "TargetOriginId",
  1071. "ForwardedValues",
  1072. "TrustedSigners",
  1073. "ViewerProtocolPolicy",
  1074. "MinTTL"
  1075. ],
  1076. "members":{
  1077. "PathPattern":{"shape":"string"},
  1078. "TargetOriginId":{"shape":"string"},
  1079. "ForwardedValues":{"shape":"ForwardedValues"},
  1080. "TrustedSigners":{"shape":"TrustedSigners"},
  1081. "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
  1082. "MinTTL":{"shape":"long"},
  1083. "AllowedMethods":{"shape":"AllowedMethods"},
  1084. "SmoothStreaming":{"shape":"boolean"},
  1085. "DefaultTTL":{"shape":"long"},
  1086. "MaxTTL":{"shape":"long"}
  1087. }
  1088. },
  1089. "CacheBehaviorList":{
  1090. "type":"list",
  1091. "member":{
  1092. "shape":"CacheBehavior",
  1093. "locationName":"CacheBehavior"
  1094. }
  1095. },
  1096. "CacheBehaviors":{
  1097. "type":"structure",
  1098. "required":["Quantity"],
  1099. "members":{
  1100. "Quantity":{"shape":"integer"},
  1101. "Items":{"shape":"CacheBehaviorList"}
  1102. }
  1103. },
  1104. "CachedMethods":{
  1105. "type":"structure",
  1106. "required":[
  1107. "Quantity",
  1108. "Items"
  1109. ],
  1110. "members":{
  1111. "Quantity":{"shape":"integer"},
  1112. "Items":{"shape":"MethodsList"}
  1113. }
  1114. },
  1115. "CloudFrontOriginAccessIdentity":{
  1116. "type":"structure",
  1117. "required":[
  1118. "Id",
  1119. "S3CanonicalUserId"
  1120. ],
  1121. "members":{
  1122. "Id":{"shape":"string"},
  1123. "S3CanonicalUserId":{"shape":"string"},
  1124. "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"}
  1125. }
  1126. },
  1127. "CloudFrontOriginAccessIdentityAlreadyExists":{
  1128. "type":"structure",
  1129. "members":{
  1130. "Message":{"shape":"string"}
  1131. },
  1132. "error":{"httpStatusCode":409},
  1133. "exception":true
  1134. },
  1135. "CloudFrontOriginAccessIdentityConfig":{
  1136. "type":"structure",
  1137. "required":[
  1138. "CallerReference",
  1139. "Comment"
  1140. ],
  1141. "members":{
  1142. "CallerReference":{"shape":"string"},
  1143. "Comment":{"shape":"string"}
  1144. }
  1145. },
  1146. "CloudFrontOriginAccessIdentityInUse":{
  1147. "type":"structure",
  1148. "members":{
  1149. "Message":{"shape":"string"}
  1150. },
  1151. "error":{"httpStatusCode":409},
  1152. "exception":true
  1153. },
  1154. "CloudFrontOriginAccessIdentityList":{
  1155. "type":"structure",
  1156. "required":[
  1157. "Marker",
  1158. "MaxItems",
  1159. "IsTruncated",
  1160. "Quantity"
  1161. ],
  1162. "members":{
  1163. "Marker":{"shape":"string"},
  1164. "NextMarker":{"shape":"string"},
  1165. "MaxItems":{"shape":"integer"},
  1166. "IsTruncated":{"shape":"boolean"},
  1167. "Quantity":{"shape":"integer"},
  1168. "Items":{"shape":"CloudFrontOriginAccessIdentitySummaryList"}
  1169. }
  1170. },
  1171. "CloudFrontOriginAccessIdentitySummary":{
  1172. "type":"structure",
  1173. "required":[
  1174. "Id",
  1175. "S3CanonicalUserId",
  1176. "Comment"
  1177. ],
  1178. "members":{
  1179. "Id":{"shape":"string"},
  1180. "S3CanonicalUserId":{"shape":"string"},
  1181. "Comment":{"shape":"string"}
  1182. }
  1183. },
  1184. "CloudFrontOriginAccessIdentitySummaryList":{
  1185. "type":"list",
  1186. "member":{
  1187. "shape":"CloudFrontOriginAccessIdentitySummary",
  1188. "locationName":"CloudFrontOriginAccessIdentitySummary"
  1189. }
  1190. },
  1191. "CookieNameList":{
  1192. "type":"list",
  1193. "member":{
  1194. "shape":"string",
  1195. "locationName":"Name"
  1196. }
  1197. },
  1198. "CookieNames":{
  1199. "type":"structure",
  1200. "required":["Quantity"],
  1201. "members":{
  1202. "Quantity":{"shape":"integer"},
  1203. "Items":{"shape":"CookieNameList"}
  1204. }
  1205. },
  1206. "CookiePreference":{
  1207. "type":"structure",
  1208. "required":["Forward"],
  1209. "members":{
  1210. "Forward":{"shape":"ItemSelection"},
  1211. "WhitelistedNames":{"shape":"CookieNames"}
  1212. }
  1213. },
  1214. "CreateCloudFrontOriginAccessIdentityRequest":{
  1215. "type":"structure",
  1216. "required":["CloudFrontOriginAccessIdentityConfig"],
  1217. "members":{
  1218. "CloudFrontOriginAccessIdentityConfig":{
  1219. "shape":"CloudFrontOriginAccessIdentityConfig",
  1220. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  1221. "locationName":"CloudFrontOriginAccessIdentityConfig"
  1222. }
  1223. },
  1224. "payload":"CloudFrontOriginAccessIdentityConfig"
  1225. },
  1226. "CreateCloudFrontOriginAccessIdentityResult":{
  1227. "type":"structure",
  1228. "members":{
  1229. "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
  1230. "Location":{
  1231. "shape":"string",
  1232. "location":"header",
  1233. "locationName":"Location"
  1234. },
  1235. "ETag":{
  1236. "shape":"string",
  1237. "location":"header",
  1238. "locationName":"ETag"
  1239. }
  1240. },
  1241. "payload":"CloudFrontOriginAccessIdentity"
  1242. },
  1243. "CreateDistributionRequest":{
  1244. "type":"structure",
  1245. "required":["DistributionConfig"],
  1246. "members":{
  1247. "DistributionConfig":{
  1248. "shape":"DistributionConfig",
  1249. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  1250. "locationName":"DistributionConfig"
  1251. }
  1252. },
  1253. "payload":"DistributionConfig"
  1254. },
  1255. "CreateDistributionResult":{
  1256. "type":"structure",
  1257. "members":{
  1258. "Distribution":{"shape":"Distribution"},
  1259. "Location":{
  1260. "shape":"string",
  1261. "location":"header",
  1262. "locationName":"Location"
  1263. },
  1264. "ETag":{
  1265. "shape":"string",
  1266. "location":"header",
  1267. "locationName":"ETag"
  1268. }
  1269. },
  1270. "payload":"Distribution"
  1271. },
  1272. "CreateInvalidationRequest":{
  1273. "type":"structure",
  1274. "required":[
  1275. "DistributionId",
  1276. "InvalidationBatch"
  1277. ],
  1278. "members":{
  1279. "DistributionId":{
  1280. "shape":"string",
  1281. "location":"uri",
  1282. "locationName":"DistributionId"
  1283. },
  1284. "InvalidationBatch":{
  1285. "shape":"InvalidationBatch",
  1286. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  1287. "locationName":"InvalidationBatch"
  1288. }
  1289. },
  1290. "payload":"InvalidationBatch"
  1291. },
  1292. "CreateInvalidationResult":{
  1293. "type":"structure",
  1294. "members":{
  1295. "Location":{
  1296. "shape":"string",
  1297. "location":"header",
  1298. "locationName":"Location"
  1299. },
  1300. "Invalidation":{"shape":"Invalidation"}
  1301. },
  1302. "payload":"Invalidation"
  1303. },
  1304. "CreateStreamingDistributionRequest":{
  1305. "type":"structure",
  1306. "required":["StreamingDistributionConfig"],
  1307. "members":{
  1308. "StreamingDistributionConfig":{
  1309. "shape":"StreamingDistributionConfig",
  1310. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  1311. "locationName":"StreamingDistributionConfig"
  1312. }
  1313. },
  1314. "payload":"StreamingDistributionConfig"
  1315. },
  1316. "CreateStreamingDistributionResult":{
  1317. "type":"structure",
  1318. "members":{
  1319. "StreamingDistribution":{"shape":"StreamingDistribution"},
  1320. "Location":{
  1321. "shape":"string",
  1322. "location":"header",
  1323. "locationName":"Location"
  1324. },
  1325. "ETag":{
  1326. "shape":"string",
  1327. "location":"header",
  1328. "locationName":"ETag"
  1329. }
  1330. },
  1331. "payload":"StreamingDistribution"
  1332. },
  1333. "CustomErrorResponse":{
  1334. "type":"structure",
  1335. "required":["ErrorCode"],
  1336. "members":{
  1337. "ErrorCode":{"shape":"integer"},
  1338. "ResponsePagePath":{"shape":"string"},
  1339. "ResponseCode":{"shape":"string"},
  1340. "ErrorCachingMinTTL":{"shape":"long"}
  1341. }
  1342. },
  1343. "CustomErrorResponseList":{
  1344. "type":"list",
  1345. "member":{
  1346. "shape":"CustomErrorResponse",
  1347. "locationName":"CustomErrorResponse"
  1348. }
  1349. },
  1350. "CustomErrorResponses":{
  1351. "type":"structure",
  1352. "required":["Quantity"],
  1353. "members":{
  1354. "Quantity":{"shape":"integer"},
  1355. "Items":{"shape":"CustomErrorResponseList"}
  1356. }
  1357. },
  1358. "CustomOriginConfig":{
  1359. "type":"structure",
  1360. "required":[
  1361. "HTTPPort",
  1362. "HTTPSPort",
  1363. "OriginProtocolPolicy"
  1364. ],
  1365. "members":{
  1366. "HTTPPort":{"shape":"integer"},
  1367. "HTTPSPort":{"shape":"integer"},
  1368. "OriginProtocolPolicy":{"shape":"OriginProtocolPolicy"}
  1369. }
  1370. },
  1371. "DefaultCacheBehavior":{
  1372. "type":"structure",
  1373. "required":[
  1374. "TargetOriginId",
  1375. "ForwardedValues",
  1376. "TrustedSigners",
  1377. "ViewerProtocolPolicy",
  1378. "MinTTL"
  1379. ],
  1380. "members":{
  1381. "TargetOriginId":{"shape":"string"},
  1382. "ForwardedValues":{"shape":"ForwardedValues"},
  1383. "TrustedSigners":{"shape":"TrustedSigners"},
  1384. "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
  1385. "MinTTL":{"shape":"long"},
  1386. "AllowedMethods":{"shape":"AllowedMethods"},
  1387. "SmoothStreaming":{"shape":"boolean"},
  1388. "DefaultTTL":{"shape":"long"},
  1389. "MaxTTL":{"shape":"long"}
  1390. }
  1391. },
  1392. "DeleteCloudFrontOriginAccessIdentityRequest":{
  1393. "type":"structure",
  1394. "members":{
  1395. "Id":{
  1396. "shape":"string",
  1397. "location":"uri",
  1398. "locationName":"Id"
  1399. },
  1400. "IfMatch":{
  1401. "shape":"string",
  1402. "location":"header",
  1403. "locationName":"If-Match"
  1404. }
  1405. },
  1406. "required":["Id"]
  1407. },
  1408. "DeleteDistributionRequest":{
  1409. "type":"structure",
  1410. "members":{
  1411. "Id":{
  1412. "shape":"string",
  1413. "location":"uri",
  1414. "locationName":"Id"
  1415. },
  1416. "IfMatch":{
  1417. "shape":"string",
  1418. "location":"header",
  1419. "locationName":"If-Match"
  1420. }
  1421. },
  1422. "required":["Id"]
  1423. },
  1424. "DeleteStreamingDistributionRequest":{
  1425. "type":"structure",
  1426. "members":{
  1427. "Id":{
  1428. "shape":"string",
  1429. "location":"uri",
  1430. "locationName":"Id"
  1431. },
  1432. "IfMatch":{
  1433. "shape":"string",
  1434. "location":"header",
  1435. "locationName":"If-Match"
  1436. }
  1437. },
  1438. "required":["Id"]
  1439. },
  1440. "Distribution":{
  1441. "type":"structure",
  1442. "required":[
  1443. "Id",
  1444. "Status",
  1445. "LastModifiedTime",
  1446. "InProgressInvalidationBatches",
  1447. "DomainName",
  1448. "ActiveTrustedSigners",
  1449. "DistributionConfig"
  1450. ],
  1451. "members":{
  1452. "Id":{"shape":"string"},
  1453. "Status":{"shape":"string"},
  1454. "LastModifiedTime":{"shape":"timestamp"},
  1455. "InProgressInvalidationBatches":{"shape":"integer"},
  1456. "DomainName":{"shape":"string"},
  1457. "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
  1458. "DistributionConfig":{"shape":"DistributionConfig"}
  1459. }
  1460. },
  1461. "DistributionAlreadyExists":{
  1462. "type":"structure",
  1463. "members":{
  1464. "Message":{"shape":"string"}
  1465. },
  1466. "error":{"httpStatusCode":409},
  1467. "exception":true
  1468. },
  1469. "DistributionConfig":{
  1470. "type":"structure",
  1471. "required":[
  1472. "CallerReference",
  1473. "Origins",
  1474. "DefaultCacheBehavior",
  1475. "Comment",
  1476. "Enabled"
  1477. ],
  1478. "members":{
  1479. "CallerReference":{"shape":"string"},
  1480. "Aliases":{"shape":"Aliases"},
  1481. "DefaultRootObject":{"shape":"string"},
  1482. "Origins":{"shape":"Origins"},
  1483. "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
  1484. "CacheBehaviors":{"shape":"CacheBehaviors"},
  1485. "CustomErrorResponses":{"shape":"CustomErrorResponses"},
  1486. "Comment":{"shape":"string"},
  1487. "Logging":{"shape":"LoggingConfig"},
  1488. "PriceClass":{"shape":"PriceClass"},
  1489. "Enabled":{"shape":"boolean"},
  1490. "ViewerCertificate":{"shape":"ViewerCertificate"},
  1491. "Restrictions":{"shape":"Restrictions"},
  1492. "WebACLId":{"shape":"string"}
  1493. }
  1494. },
  1495. "DistributionList":{
  1496. "type":"structure",
  1497. "required":[
  1498. "Marker",
  1499. "MaxItems",
  1500. "IsTruncated",
  1501. "Quantity"
  1502. ],
  1503. "members":{
  1504. "Marker":{"shape":"string"},
  1505. "NextMarker":{"shape":"string"},
  1506. "MaxItems":{"shape":"integer"},
  1507. "IsTruncated":{"shape":"boolean"},
  1508. "Quantity":{"shape":"integer"},
  1509. "Items":{"shape":"DistributionSummaryList"}
  1510. }
  1511. },
  1512. "DistributionNotDisabled":{
  1513. "type":"structure",
  1514. "members":{
  1515. "Message":{"shape":"string"}
  1516. },
  1517. "error":{"httpStatusCode":409},
  1518. "exception":true
  1519. },
  1520. "DistributionSummary":{
  1521. "type":"structure",
  1522. "required":[
  1523. "Id",
  1524. "Status",
  1525. "LastModifiedTime",
  1526. "DomainName",
  1527. "Aliases",
  1528. "Origins",
  1529. "DefaultCacheBehavior",
  1530. "CacheBehaviors",
  1531. "CustomErrorResponses",
  1532. "Comment",
  1533. "PriceClass",
  1534. "Enabled",
  1535. "ViewerCertificate",
  1536. "Restrictions",
  1537. "WebACLId"
  1538. ],
  1539. "members":{
  1540. "Id":{"shape":"string"},
  1541. "Status":{"shape":"string"},
  1542. "LastModifiedTime":{"shape":"timestamp"},
  1543. "DomainName":{"shape":"string"},
  1544. "Aliases":{"shape":"Aliases"},
  1545. "Origins":{"shape":"Origins"},
  1546. "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
  1547. "CacheBehaviors":{"shape":"CacheBehaviors"},
  1548. "CustomErrorResponses":{"shape":"CustomErrorResponses"},
  1549. "Comment":{"shape":"string"},
  1550. "PriceClass":{"shape":"PriceClass"},
  1551. "Enabled":{"shape":"boolean"},
  1552. "ViewerCertificate":{"shape":"ViewerCertificate"},
  1553. "Restrictions":{"shape":"Restrictions"},
  1554. "WebACLId":{"shape":"string"}
  1555. }
  1556. },
  1557. "DistributionSummaryList":{
  1558. "type":"list",
  1559. "member":{
  1560. "shape":"DistributionSummary",
  1561. "locationName":"DistributionSummary"
  1562. }
  1563. },
  1564. "ForwardedValues":{
  1565. "type":"structure",
  1566. "required":[
  1567. "QueryString",
  1568. "Cookies"
  1569. ],
  1570. "members":{
  1571. "QueryString":{"shape":"boolean"},
  1572. "Cookies":{"shape":"CookiePreference"},
  1573. "Headers":{"shape":"Headers"}
  1574. }
  1575. },
  1576. "GeoRestriction":{
  1577. "type":"structure",
  1578. "required":[
  1579. "RestrictionType",
  1580. "Quantity"
  1581. ],
  1582. "members":{
  1583. "RestrictionType":{"shape":"GeoRestrictionType"},
  1584. "Quantity":{"shape":"integer"},
  1585. "Items":{"shape":"LocationList"}
  1586. }
  1587. },
  1588. "GeoRestrictionType":{
  1589. "type":"string",
  1590. "enum":[
  1591. "blacklist",
  1592. "whitelist",
  1593. "none"
  1594. ]
  1595. },
  1596. "GetCloudFrontOriginAccessIdentityConfigRequest":{
  1597. "type":"structure",
  1598. "members":{
  1599. "Id":{
  1600. "shape":"string",
  1601. "location":"uri",
  1602. "locationName":"Id"
  1603. }
  1604. },
  1605. "required":["Id"]
  1606. },
  1607. "GetCloudFrontOriginAccessIdentityConfigResult":{
  1608. "type":"structure",
  1609. "members":{
  1610. "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"},
  1611. "ETag":{
  1612. "shape":"string",
  1613. "location":"header",
  1614. "locationName":"ETag"
  1615. }
  1616. },
  1617. "payload":"CloudFrontOriginAccessIdentityConfig"
  1618. },
  1619. "GetCloudFrontOriginAccessIdentityRequest":{
  1620. "type":"structure",
  1621. "members":{
  1622. "Id":{
  1623. "shape":"string",
  1624. "location":"uri",
  1625. "locationName":"Id"
  1626. }
  1627. },
  1628. "required":["Id"]
  1629. },
  1630. "GetCloudFrontOriginAccessIdentityResult":{
  1631. "type":"structure",
  1632. "members":{
  1633. "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
  1634. "ETag":{
  1635. "shape":"string",
  1636. "location":"header",
  1637. "locationName":"ETag"
  1638. }
  1639. },
  1640. "payload":"CloudFrontOriginAccessIdentity"
  1641. },
  1642. "GetDistributionConfigRequest":{
  1643. "type":"structure",
  1644. "members":{
  1645. "Id":{
  1646. "shape":"string",
  1647. "location":"uri",
  1648. "locationName":"Id"
  1649. }
  1650. },
  1651. "required":["Id"]
  1652. },
  1653. "GetDistributionConfigResult":{
  1654. "type":"structure",
  1655. "members":{
  1656. "DistributionConfig":{"shape":"DistributionConfig"},
  1657. "ETag":{
  1658. "shape":"string",
  1659. "location":"header",
  1660. "locationName":"ETag"
  1661. }
  1662. },
  1663. "payload":"DistributionConfig"
  1664. },
  1665. "GetDistributionRequest":{
  1666. "type":"structure",
  1667. "members":{
  1668. "Id":{
  1669. "shape":"string",
  1670. "location":"uri",
  1671. "locationName":"Id"
  1672. }
  1673. },
  1674. "required":["Id"]
  1675. },
  1676. "GetDistributionResult":{
  1677. "type":"structure",
  1678. "members":{
  1679. "Distribution":{"shape":"Distribution"},
  1680. "ETag":{
  1681. "shape":"string",
  1682. "location":"header",
  1683. "locationName":"ETag"
  1684. }
  1685. },
  1686. "payload":"Distribution"
  1687. },
  1688. "GetInvalidationRequest":{
  1689. "type":"structure",
  1690. "required":[
  1691. "DistributionId",
  1692. "Id"
  1693. ],
  1694. "members":{
  1695. "DistributionId":{
  1696. "shape":"string",
  1697. "location":"uri",
  1698. "locationName":"DistributionId"
  1699. },
  1700. "Id":{
  1701. "shape":"string",
  1702. "location":"uri",
  1703. "locationName":"Id"
  1704. }
  1705. }
  1706. },
  1707. "GetInvalidationResult":{
  1708. "type":"structure",
  1709. "members":{
  1710. "Invalidation":{"shape":"Invalidation"}
  1711. },
  1712. "payload":"Invalidation"
  1713. },
  1714. "GetStreamingDistributionConfigRequest":{
  1715. "type":"structure",
  1716. "members":{
  1717. "Id":{
  1718. "shape":"string",
  1719. "location":"uri",
  1720. "locationName":"Id"
  1721. }
  1722. },
  1723. "required":["Id"]
  1724. },
  1725. "GetStreamingDistributionConfigResult":{
  1726. "type":"structure",
  1727. "members":{
  1728. "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
  1729. "ETag":{
  1730. "shape":"string",
  1731. "location":"header",
  1732. "locationName":"ETag"
  1733. }
  1734. },
  1735. "payload":"StreamingDistributionConfig"
  1736. },
  1737. "GetStreamingDistributionRequest":{
  1738. "type":"structure",
  1739. "members":{
  1740. "Id":{
  1741. "shape":"string",
  1742. "location":"uri",
  1743. "locationName":"Id"
  1744. }
  1745. },
  1746. "required":["Id"]
  1747. },
  1748. "GetStreamingDistributionResult":{
  1749. "type":"structure",
  1750. "members":{
  1751. "StreamingDistribution":{"shape":"StreamingDistribution"},
  1752. "ETag":{
  1753. "shape":"string",
  1754. "location":"header",
  1755. "locationName":"ETag"
  1756. }
  1757. },
  1758. "payload":"StreamingDistribution"
  1759. },
  1760. "HeaderList":{
  1761. "type":"list",
  1762. "member":{
  1763. "shape":"string",
  1764. "locationName":"Name"
  1765. }
  1766. },
  1767. "Headers":{
  1768. "type":"structure",
  1769. "required":["Quantity"],
  1770. "members":{
  1771. "Quantity":{"shape":"integer"},
  1772. "Items":{"shape":"HeaderList"}
  1773. }
  1774. },
  1775. "IllegalUpdate":{
  1776. "type":"structure",
  1777. "members":{
  1778. "Message":{"shape":"string"}
  1779. },
  1780. "error":{"httpStatusCode":400},
  1781. "exception":true
  1782. },
  1783. "InconsistentQuantities":{
  1784. "type":"structure",
  1785. "members":{
  1786. "Message":{"shape":"string"}
  1787. },
  1788. "error":{"httpStatusCode":400},
  1789. "exception":true
  1790. },
  1791. "InvalidArgument":{
  1792. "type":"structure",
  1793. "members":{
  1794. "Message":{"shape":"string"}
  1795. },
  1796. "error":{"httpStatusCode":400},
  1797. "exception":true
  1798. },
  1799. "InvalidDefaultRootObject":{
  1800. "type":"structure",
  1801. "members":{
  1802. "Message":{"shape":"string"}
  1803. },
  1804. "error":{"httpStatusCode":400},
  1805. "exception":true
  1806. },
  1807. "InvalidErrorCode":{
  1808. "type":"structure",
  1809. "members":{
  1810. "Message":{"shape":"string"}
  1811. },
  1812. "error":{"httpStatusCode":400},
  1813. "exception":true
  1814. },
  1815. "InvalidForwardCookies":{
  1816. "type":"structure",
  1817. "members":{
  1818. "Message":{"shape":"string"}
  1819. },
  1820. "error":{"httpStatusCode":400},
  1821. "exception":true
  1822. },
  1823. "InvalidGeoRestrictionParameter":{
  1824. "type":"structure",
  1825. "members":{
  1826. "Message":{"shape":"string"}
  1827. },
  1828. "error":{"httpStatusCode":400},
  1829. "exception":true
  1830. },
  1831. "InvalidHeadersForS3Origin":{
  1832. "type":"structure",
  1833. "members":{
  1834. "Message":{"shape":"string"}
  1835. },
  1836. "error":{"httpStatusCode":400},
  1837. "exception":true
  1838. },
  1839. "InvalidIfMatchVersion":{
  1840. "type":"structure",
  1841. "members":{
  1842. "Message":{"shape":"string"}
  1843. },
  1844. "error":{"httpStatusCode":400},
  1845. "exception":true
  1846. },
  1847. "InvalidLocationCode":{
  1848. "type":"structure",
  1849. "members":{
  1850. "Message":{"shape":"string"}
  1851. },
  1852. "error":{"httpStatusCode":400},
  1853. "exception":true
  1854. },
  1855. "InvalidMinimumProtocolVersion":{
  1856. "type":"structure",
  1857. "members":{
  1858. "Message":{"shape":"string"}
  1859. },
  1860. "error":{"httpStatusCode":400},
  1861. "exception":true
  1862. },
  1863. "InvalidOrigin":{
  1864. "type":"structure",
  1865. "members":{
  1866. "Message":{"shape":"string"}
  1867. },
  1868. "error":{"httpStatusCode":400},
  1869. "exception":true
  1870. },
  1871. "InvalidOriginAccessIdentity":{
  1872. "type":"structure",
  1873. "members":{
  1874. "Message":{"shape":"string"}
  1875. },
  1876. "error":{"httpStatusCode":400},
  1877. "exception":true
  1878. },
  1879. "InvalidProtocolSettings":{
  1880. "type":"structure",
  1881. "members":{
  1882. "Message":{"shape":"string"}
  1883. },
  1884. "error":{"httpStatusCode":400},
  1885. "exception":true
  1886. },
  1887. "InvalidRelativePath":{
  1888. "type":"structure",
  1889. "members":{
  1890. "Message":{"shape":"string"}
  1891. },
  1892. "error":{"httpStatusCode":400},
  1893. "exception":true
  1894. },
  1895. "InvalidRequiredProtocol":{
  1896. "type":"structure",
  1897. "members":{
  1898. "Message":{"shape":"string"}
  1899. },
  1900. "error":{"httpStatusCode":400},
  1901. "exception":true
  1902. },
  1903. "InvalidResponseCode":{
  1904. "type":"structure",
  1905. "members":{
  1906. "Message":{"shape":"string"}
  1907. },
  1908. "error":{"httpStatusCode":400},
  1909. "exception":true
  1910. },
  1911. "InvalidTTLOrder":{
  1912. "type":"structure",
  1913. "members":{
  1914. "Message":{"shape":"string"}
  1915. },
  1916. "error":{"httpStatusCode":400},
  1917. "exception":true
  1918. },
  1919. "InvalidViewerCertificate":{
  1920. "type":"structure",
  1921. "members":{
  1922. "Message":{"shape":"string"}
  1923. },
  1924. "error":{"httpStatusCode":400},
  1925. "exception":true
  1926. },
  1927. "InvalidWebACLId":{
  1928. "type":"structure",
  1929. "members":{
  1930. "Message":{"shape":"string"}
  1931. },
  1932. "error":{"httpStatusCode":400},
  1933. "exception":true
  1934. },
  1935. "Invalidation":{
  1936. "type":"structure",
  1937. "required":[
  1938. "Id",
  1939. "Status",
  1940. "CreateTime",
  1941. "InvalidationBatch"
  1942. ],
  1943. "members":{
  1944. "Id":{"shape":"string"},
  1945. "Status":{"shape":"string"},
  1946. "CreateTime":{"shape":"timestamp"},
  1947. "InvalidationBatch":{"shape":"InvalidationBatch"}
  1948. }
  1949. },
  1950. "InvalidationBatch":{
  1951. "type":"structure",
  1952. "required":[
  1953. "Paths",
  1954. "CallerReference"
  1955. ],
  1956. "members":{
  1957. "Paths":{"shape":"Paths"},
  1958. "CallerReference":{"shape":"string"}
  1959. }
  1960. },
  1961. "InvalidationList":{
  1962. "type":"structure",
  1963. "required":[
  1964. "Marker",
  1965. "MaxItems",
  1966. "IsTruncated",
  1967. "Quantity"
  1968. ],
  1969. "members":{
  1970. "Marker":{"shape":"string"},
  1971. "NextMarker":{"shape":"string"},
  1972. "MaxItems":{"shape":"integer"},
  1973. "IsTruncated":{"shape":"boolean"},
  1974. "Quantity":{"shape":"integer"},
  1975. "Items":{"shape":"InvalidationSummaryList"}
  1976. }
  1977. },
  1978. "InvalidationSummary":{
  1979. "type":"structure",
  1980. "required":[
  1981. "Id",
  1982. "CreateTime",
  1983. "Status"
  1984. ],
  1985. "members":{
  1986. "Id":{"shape":"string"},
  1987. "CreateTime":{"shape":"timestamp"},
  1988. "Status":{"shape":"string"}
  1989. }
  1990. },
  1991. "InvalidationSummaryList":{
  1992. "type":"list",
  1993. "member":{
  1994. "shape":"InvalidationSummary",
  1995. "locationName":"InvalidationSummary"
  1996. }
  1997. },
  1998. "ItemSelection":{
  1999. "type":"string",
  2000. "enum":[
  2001. "none",
  2002. "whitelist",
  2003. "all"
  2004. ]
  2005. },
  2006. "KeyPairIdList":{
  2007. "type":"list",
  2008. "member":{
  2009. "shape":"string",
  2010. "locationName":"KeyPairId"
  2011. }
  2012. },
  2013. "KeyPairIds":{
  2014. "type":"structure",
  2015. "required":["Quantity"],
  2016. "members":{
  2017. "Quantity":{"shape":"integer"},
  2018. "Items":{"shape":"KeyPairIdList"}
  2019. }
  2020. },
  2021. "ListCloudFrontOriginAccessIdentitiesRequest":{
  2022. "type":"structure",
  2023. "members":{
  2024. "Marker":{
  2025. "shape":"string",
  2026. "location":"querystring",
  2027. "locationName":"Marker"
  2028. },
  2029. "MaxItems":{
  2030. "shape":"string",
  2031. "location":"querystring",
  2032. "locationName":"MaxItems"
  2033. }
  2034. }
  2035. },
  2036. "ListCloudFrontOriginAccessIdentitiesResult":{
  2037. "type":"structure",
  2038. "members":{
  2039. "CloudFrontOriginAccessIdentityList":{"shape":"CloudFrontOriginAccessIdentityList"}
  2040. },
  2041. "payload":"CloudFrontOriginAccessIdentityList"
  2042. },
  2043. "ListDistributionsByWebACLIdRequest":{
  2044. "type":"structure",
  2045. "required":["WebACLId"],
  2046. "members":{
  2047. "Marker":{
  2048. "shape":"string",
  2049. "location":"querystring",
  2050. "locationName":"Marker"
  2051. },
  2052. "MaxItems":{
  2053. "shape":"string",
  2054. "location":"querystring",
  2055. "locationName":"MaxItems"
  2056. },
  2057. "WebACLId":{
  2058. "shape":"string",
  2059. "location":"uri",
  2060. "locationName":"WebACLId"
  2061. }
  2062. }
  2063. },
  2064. "ListDistributionsByWebACLIdResult":{
  2065. "type":"structure",
  2066. "members":{
  2067. "DistributionList":{"shape":"DistributionList"}
  2068. },
  2069. "payload":"DistributionList"
  2070. },
  2071. "ListDistributionsRequest":{
  2072. "type":"structure",
  2073. "members":{
  2074. "Marker":{
  2075. "shape":"string",
  2076. "location":"querystring",
  2077. "locationName":"Marker"
  2078. },
  2079. "MaxItems":{
  2080. "shape":"string",
  2081. "location":"querystring",
  2082. "locationName":"MaxItems"
  2083. }
  2084. }
  2085. },
  2086. "ListDistributionsResult":{
  2087. "type":"structure",
  2088. "members":{
  2089. "DistributionList":{"shape":"DistributionList"}
  2090. },
  2091. "payload":"DistributionList"
  2092. },
  2093. "ListInvalidationsRequest":{
  2094. "type":"structure",
  2095. "required":["DistributionId"],
  2096. "members":{
  2097. "DistributionId":{
  2098. "shape":"string",
  2099. "location":"uri",
  2100. "locationName":"DistributionId"
  2101. },
  2102. "Marker":{
  2103. "shape":"string",
  2104. "location":"querystring",
  2105. "locationName":"Marker"
  2106. },
  2107. "MaxItems":{
  2108. "shape":"string",
  2109. "location":"querystring",
  2110. "locationName":"MaxItems"
  2111. }
  2112. }
  2113. },
  2114. "ListInvalidationsResult":{
  2115. "type":"structure",
  2116. "members":{
  2117. "InvalidationList":{"shape":"InvalidationList"}
  2118. },
  2119. "payload":"InvalidationList"
  2120. },
  2121. "ListStreamingDistributionsRequest":{
  2122. "type":"structure",
  2123. "members":{
  2124. "Marker":{
  2125. "shape":"string",
  2126. "location":"querystring",
  2127. "locationName":"Marker"
  2128. },
  2129. "MaxItems":{
  2130. "shape":"string",
  2131. "location":"querystring",
  2132. "locationName":"MaxItems"
  2133. }
  2134. }
  2135. },
  2136. "ListStreamingDistributionsResult":{
  2137. "type":"structure",
  2138. "members":{
  2139. "StreamingDistributionList":{"shape":"StreamingDistributionList"}
  2140. },
  2141. "payload":"StreamingDistributionList"
  2142. },
  2143. "LocationList":{
  2144. "type":"list",
  2145. "member":{
  2146. "shape":"string",
  2147. "locationName":"Location"
  2148. }
  2149. },
  2150. "LoggingConfig":{
  2151. "type":"structure",
  2152. "required":[
  2153. "Enabled",
  2154. "IncludeCookies",
  2155. "Bucket",
  2156. "Prefix"
  2157. ],
  2158. "members":{
  2159. "Enabled":{"shape":"boolean"},
  2160. "IncludeCookies":{"shape":"boolean"},
  2161. "Bucket":{"shape":"string"},
  2162. "Prefix":{"shape":"string"}
  2163. }
  2164. },
  2165. "Method":{
  2166. "type":"string",
  2167. "enum":[
  2168. "GET",
  2169. "HEAD",
  2170. "POST",
  2171. "PUT",
  2172. "PATCH",
  2173. "OPTIONS",
  2174. "DELETE"
  2175. ]
  2176. },
  2177. "MethodsList":{
  2178. "type":"list",
  2179. "member":{
  2180. "shape":"Method",
  2181. "locationName":"Method"
  2182. }
  2183. },
  2184. "MinimumProtocolVersion":{
  2185. "type":"string",
  2186. "enum":[
  2187. "SSLv3",
  2188. "TLSv1"
  2189. ]
  2190. },
  2191. "MissingBody":{
  2192. "type":"structure",
  2193. "members":{
  2194. "Message":{"shape":"string"}
  2195. },
  2196. "error":{"httpStatusCode":400},
  2197. "exception":true
  2198. },
  2199. "NoSuchCloudFrontOriginAccessIdentity":{
  2200. "type":"structure",
  2201. "members":{
  2202. "Message":{"shape":"string"}
  2203. },
  2204. "error":{"httpStatusCode":404},
  2205. "exception":true
  2206. },
  2207. "NoSuchDistribution":{
  2208. "type":"structure",
  2209. "members":{
  2210. "Message":{"shape":"string"}
  2211. },
  2212. "error":{"httpStatusCode":404},
  2213. "exception":true
  2214. },
  2215. "NoSuchInvalidation":{
  2216. "type":"structure",
  2217. "members":{
  2218. "Message":{"shape":"string"}
  2219. },
  2220. "error":{"httpStatusCode":404},
  2221. "exception":true
  2222. },
  2223. "NoSuchOrigin":{
  2224. "type":"structure",
  2225. "members":{
  2226. "Message":{"shape":"string"}
  2227. },
  2228. "error":{"httpStatusCode":404},
  2229. "exception":true
  2230. },
  2231. "NoSuchStreamingDistribution":{
  2232. "type":"structure",
  2233. "members":{
  2234. "Message":{"shape":"string"}
  2235. },
  2236. "error":{"httpStatusCode":404},
  2237. "exception":true
  2238. },
  2239. "Origin":{
  2240. "type":"structure",
  2241. "required":[
  2242. "Id",
  2243. "DomainName"
  2244. ],
  2245. "members":{
  2246. "Id":{"shape":"string"},
  2247. "DomainName":{"shape":"string"},
  2248. "OriginPath":{"shape":"string"},
  2249. "S3OriginConfig":{"shape":"S3OriginConfig"},
  2250. "CustomOriginConfig":{"shape":"CustomOriginConfig"}
  2251. }
  2252. },
  2253. "OriginList":{
  2254. "type":"list",
  2255. "member":{
  2256. "shape":"Origin",
  2257. "locationName":"Origin"
  2258. },
  2259. "min":1
  2260. },
  2261. "OriginProtocolPolicy":{
  2262. "type":"string",
  2263. "enum":[
  2264. "http-only",
  2265. "match-viewer"
  2266. ]
  2267. },
  2268. "Origins":{
  2269. "type":"structure",
  2270. "required":["Quantity"],
  2271. "members":{
  2272. "Quantity":{"shape":"integer"},
  2273. "Items":{"shape":"OriginList"}
  2274. }
  2275. },
  2276. "PathList":{
  2277. "type":"list",
  2278. "member":{
  2279. "shape":"string",
  2280. "locationName":"Path"
  2281. }
  2282. },
  2283. "Paths":{
  2284. "type":"structure",
  2285. "required":["Quantity"],
  2286. "members":{
  2287. "Quantity":{"shape":"integer"},
  2288. "Items":{"shape":"PathList"}
  2289. }
  2290. },
  2291. "PreconditionFailed":{
  2292. "type":"structure",
  2293. "members":{
  2294. "Message":{"shape":"string"}
  2295. },
  2296. "error":{"httpStatusCode":412},
  2297. "exception":true
  2298. },
  2299. "PriceClass":{
  2300. "type":"string",
  2301. "enum":[
  2302. "PriceClass_100",
  2303. "PriceClass_200",
  2304. "PriceClass_All"
  2305. ]
  2306. },
  2307. "Restrictions":{
  2308. "type":"structure",
  2309. "required":["GeoRestriction"],
  2310. "members":{
  2311. "GeoRestriction":{"shape":"GeoRestriction"}
  2312. }
  2313. },
  2314. "S3Origin":{
  2315. "type":"structure",
  2316. "required":[
  2317. "DomainName",
  2318. "OriginAccessIdentity"
  2319. ],
  2320. "members":{
  2321. "DomainName":{"shape":"string"},
  2322. "OriginAccessIdentity":{"shape":"string"}
  2323. }
  2324. },
  2325. "S3OriginConfig":{
  2326. "type":"structure",
  2327. "required":["OriginAccessIdentity"],
  2328. "members":{
  2329. "OriginAccessIdentity":{"shape":"string"}
  2330. }
  2331. },
  2332. "SSLSupportMethod":{
  2333. "type":"string",
  2334. "enum":[
  2335. "sni-only",
  2336. "vip"
  2337. ]
  2338. },
  2339. "Signer":{
  2340. "type":"structure",
  2341. "members":{
  2342. "AwsAccountNumber":{"shape":"string"},
  2343. "KeyPairIds":{"shape":"KeyPairIds"}
  2344. }
  2345. },
  2346. "SignerList":{
  2347. "type":"list",
  2348. "member":{
  2349. "shape":"Signer",
  2350. "locationName":"Signer"
  2351. }
  2352. },
  2353. "StreamingDistribution":{
  2354. "type":"structure",
  2355. "required":[
  2356. "Id",
  2357. "Status",
  2358. "DomainName",
  2359. "ActiveTrustedSigners",
  2360. "StreamingDistributionConfig"
  2361. ],
  2362. "members":{
  2363. "Id":{"shape":"string"},
  2364. "Status":{"shape":"string"},
  2365. "LastModifiedTime":{"shape":"timestamp"},
  2366. "DomainName":{"shape":"string"},
  2367. "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
  2368. "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"}
  2369. }
  2370. },
  2371. "StreamingDistributionAlreadyExists":{
  2372. "type":"structure",
  2373. "members":{
  2374. "Message":{"shape":"string"}
  2375. },
  2376. "error":{"httpStatusCode":409},
  2377. "exception":true
  2378. },
  2379. "StreamingDistributionConfig":{
  2380. "type":"structure",
  2381. "required":[
  2382. "CallerReference",
  2383. "S3Origin",
  2384. "Comment",
  2385. "TrustedSigners",
  2386. "Enabled"
  2387. ],
  2388. "members":{
  2389. "CallerReference":{"shape":"string"},
  2390. "S3Origin":{"shape":"S3Origin"},
  2391. "Aliases":{"shape":"Aliases"},
  2392. "Comment":{"shape":"string"},
  2393. "Logging":{"shape":"StreamingLoggingConfig"},
  2394. "TrustedSigners":{"shape":"TrustedSigners"},
  2395. "PriceClass":{"shape":"PriceClass"},
  2396. "Enabled":{"shape":"boolean"}
  2397. }
  2398. },
  2399. "StreamingDistributionList":{
  2400. "type":"structure",
  2401. "required":[
  2402. "Marker",
  2403. "MaxItems",
  2404. "IsTruncated",
  2405. "Quantity"
  2406. ],
  2407. "members":{
  2408. "Marker":{"shape":"string"},
  2409. "NextMarker":{"shape":"string"},
  2410. "MaxItems":{"shape":"integer"},
  2411. "IsTruncated":{"shape":"boolean"},
  2412. "Quantity":{"shape":"integer"},
  2413. "Items":{"shape":"StreamingDistributionSummaryList"}
  2414. }
  2415. },
  2416. "StreamingDistributionNotDisabled":{
  2417. "type":"structure",
  2418. "members":{
  2419. "Message":{"shape":"string"}
  2420. },
  2421. "error":{"httpStatusCode":409},
  2422. "exception":true
  2423. },
  2424. "StreamingDistributionSummary":{
  2425. "type":"structure",
  2426. "required":[
  2427. "Id",
  2428. "Status",
  2429. "LastModifiedTime",
  2430. "DomainName",
  2431. "S3Origin",
  2432. "Aliases",
  2433. "TrustedSigners",
  2434. "Comment",
  2435. "PriceClass",
  2436. "Enabled"
  2437. ],
  2438. "members":{
  2439. "Id":{"shape":"string"},
  2440. "Status":{"shape":"string"},
  2441. "LastModifiedTime":{"shape":"timestamp"},
  2442. "DomainName":{"shape":"string"},
  2443. "S3Origin":{"shape":"S3Origin"},
  2444. "Aliases":{"shape":"Aliases"},
  2445. "TrustedSigners":{"shape":"TrustedSigners"},
  2446. "Comment":{"shape":"string"},
  2447. "PriceClass":{"shape":"PriceClass"},
  2448. "Enabled":{"shape":"boolean"}
  2449. }
  2450. },
  2451. "StreamingDistributionSummaryList":{
  2452. "type":"list",
  2453. "member":{
  2454. "shape":"StreamingDistributionSummary",
  2455. "locationName":"StreamingDistributionSummary"
  2456. }
  2457. },
  2458. "StreamingLoggingConfig":{
  2459. "type":"structure",
  2460. "required":[
  2461. "Enabled",
  2462. "Bucket",
  2463. "Prefix"
  2464. ],
  2465. "members":{
  2466. "Enabled":{"shape":"boolean"},
  2467. "Bucket":{"shape":"string"},
  2468. "Prefix":{"shape":"string"}
  2469. }
  2470. },
  2471. "TooManyCacheBehaviors":{
  2472. "type":"structure",
  2473. "members":{
  2474. "Message":{"shape":"string"}
  2475. },
  2476. "error":{"httpStatusCode":400},
  2477. "exception":true
  2478. },
  2479. "TooManyCertificates":{
  2480. "type":"structure",
  2481. "members":{
  2482. "Message":{"shape":"string"}
  2483. },
  2484. "error":{"httpStatusCode":400},
  2485. "exception":true
  2486. },
  2487. "TooManyCloudFrontOriginAccessIdentities":{
  2488. "type":"structure",
  2489. "members":{
  2490. "Message":{"shape":"string"}
  2491. },
  2492. "error":{"httpStatusCode":400},
  2493. "exception":true
  2494. },
  2495. "TooManyCookieNamesInWhiteList":{
  2496. "type":"structure",
  2497. "members":{
  2498. "Message":{"shape":"string"}
  2499. },
  2500. "error":{"httpStatusCode":400},
  2501. "exception":true
  2502. },
  2503. "TooManyDistributionCNAMEs":{
  2504. "type":"structure",
  2505. "members":{
  2506. "Message":{"shape":"string"}
  2507. },
  2508. "error":{"httpStatusCode":400},
  2509. "exception":true
  2510. },
  2511. "TooManyDistributions":{
  2512. "type":"structure",
  2513. "members":{
  2514. "Message":{"shape":"string"}
  2515. },
  2516. "error":{"httpStatusCode":400},
  2517. "exception":true
  2518. },
  2519. "TooManyHeadersInForwardedValues":{
  2520. "type":"structure",
  2521. "members":{
  2522. "Message":{"shape":"string"}
  2523. },
  2524. "error":{"httpStatusCode":400},
  2525. "exception":true
  2526. },
  2527. "TooManyInvalidationsInProgress":{
  2528. "type":"structure",
  2529. "members":{
  2530. "Message":{"shape":"string"}
  2531. },
  2532. "error":{"httpStatusCode":400},
  2533. "exception":true
  2534. },
  2535. "TooManyOrigins":{
  2536. "type":"structure",
  2537. "members":{
  2538. "Message":{"shape":"string"}
  2539. },
  2540. "error":{"httpStatusCode":400},
  2541. "exception":true
  2542. },
  2543. "TooManyStreamingDistributionCNAMEs":{
  2544. "type":"structure",
  2545. "members":{
  2546. "Message":{"shape":"string"}
  2547. },
  2548. "error":{"httpStatusCode":400},
  2549. "exception":true
  2550. },
  2551. "TooManyStreamingDistributions":{
  2552. "type":"structure",
  2553. "members":{
  2554. "Message":{"shape":"string"}
  2555. },
  2556. "error":{"httpStatusCode":400},
  2557. "exception":true
  2558. },
  2559. "TooManyTrustedSigners":{
  2560. "type":"structure",
  2561. "members":{
  2562. "Message":{"shape":"string"}
  2563. },
  2564. "error":{"httpStatusCode":400},
  2565. "exception":true
  2566. },
  2567. "TrustedSignerDoesNotExist":{
  2568. "type":"structure",
  2569. "members":{
  2570. "Message":{"shape":"string"}
  2571. },
  2572. "error":{"httpStatusCode":400},
  2573. "exception":true
  2574. },
  2575. "TrustedSigners":{
  2576. "type":"structure",
  2577. "required":[
  2578. "Enabled",
  2579. "Quantity"
  2580. ],
  2581. "members":{
  2582. "Enabled":{"shape":"boolean"},
  2583. "Quantity":{"shape":"integer"},
  2584. "Items":{"shape":"AwsAccountNumberList"}
  2585. }
  2586. },
  2587. "UpdateCloudFrontOriginAccessIdentityRequest":{
  2588. "type":"structure",
  2589. "required":[
  2590. "CloudFrontOriginAccessIdentityConfig",
  2591. "Id"
  2592. ],
  2593. "members":{
  2594. "CloudFrontOriginAccessIdentityConfig":{
  2595. "shape":"CloudFrontOriginAccessIdentityConfig",
  2596. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  2597. "locationName":"CloudFrontOriginAccessIdentityConfig"
  2598. },
  2599. "Id":{
  2600. "shape":"string",
  2601. "location":"uri",
  2602. "locationName":"Id"
  2603. },
  2604. "IfMatch":{
  2605. "shape":"string",
  2606. "location":"header",
  2607. "locationName":"If-Match"
  2608. }
  2609. },
  2610. "payload":"CloudFrontOriginAccessIdentityConfig"
  2611. },
  2612. "UpdateCloudFrontOriginAccessIdentityResult":{
  2613. "type":"structure",
  2614. "members":{
  2615. "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
  2616. "ETag":{
  2617. "shape":"string",
  2618. "location":"header",
  2619. "locationName":"ETag"
  2620. }
  2621. },
  2622. "payload":"CloudFrontOriginAccessIdentity"
  2623. },
  2624. "UpdateDistributionRequest":{
  2625. "type":"structure",
  2626. "required":[
  2627. "DistributionConfig",
  2628. "Id"
  2629. ],
  2630. "members":{
  2631. "DistributionConfig":{
  2632. "shape":"DistributionConfig",
  2633. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  2634. "locationName":"DistributionConfig"
  2635. },
  2636. "Id":{
  2637. "shape":"string",
  2638. "location":"uri",
  2639. "locationName":"Id"
  2640. },
  2641. "IfMatch":{
  2642. "shape":"string",
  2643. "location":"header",
  2644. "locationName":"If-Match"
  2645. }
  2646. },
  2647. "payload":"DistributionConfig"
  2648. },
  2649. "UpdateDistributionResult":{
  2650. "type":"structure",
  2651. "members":{
  2652. "Distribution":{"shape":"Distribution"},
  2653. "ETag":{
  2654. "shape":"string",
  2655. "location":"header",
  2656. "locationName":"ETag"
  2657. }
  2658. },
  2659. "payload":"Distribution"
  2660. },
  2661. "UpdateStreamingDistributionRequest":{
  2662. "type":"structure",
  2663. "required":[
  2664. "StreamingDistributionConfig",
  2665. "Id"
  2666. ],
  2667. "members":{
  2668. "StreamingDistributionConfig":{
  2669. "shape":"StreamingDistributionConfig",
  2670. "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2015-07-27/"},
  2671. "locationName":"StreamingDistributionConfig"
  2672. },
  2673. "Id":{
  2674. "shape":"string",
  2675. "location":"uri",
  2676. "locationName":"Id"
  2677. },
  2678. "IfMatch":{
  2679. "shape":"string",
  2680. "location":"header",
  2681. "locationName":"If-Match"
  2682. }
  2683. },
  2684. "payload":"StreamingDistributionConfig"
  2685. },
  2686. "UpdateStreamingDistributionResult":{
  2687. "type":"structure",
  2688. "members":{
  2689. "StreamingDistribution":{"shape":"StreamingDistribution"},
  2690. "ETag":{
  2691. "shape":"string",
  2692. "location":"header",
  2693. "locationName":"ETag"
  2694. }
  2695. },
  2696. "payload":"StreamingDistribution"
  2697. },
  2698. "ViewerCertificate":{
  2699. "type":"structure",
  2700. "members":{
  2701. "IAMCertificateId":{"shape":"string"},
  2702. "CloudFrontDefaultCertificate":{"shape":"boolean"},
  2703. "SSLSupportMethod":{"shape":"SSLSupportMethod"},
  2704. "MinimumProtocolVersion":{"shape":"MinimumProtocolVersion"}
  2705. }
  2706. },
  2707. "ViewerProtocolPolicy":{
  2708. "type":"string",
  2709. "enum":[
  2710. "allow-all",
  2711. "https-only",
  2712. "redirect-to-https"
  2713. ]
  2714. },
  2715. "boolean":{"type":"boolean"},
  2716. "integer":{"type":"integer"},
  2717. "long":{"type":"long"},
  2718. "string":{"type":"string"},
  2719. "timestamp":{"type":"timestamp"}
  2720. }
  2721. }