aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -696
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -3179
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,32 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListCloudFrontOriginAccessIdentities": {
4
- "input_token": "Marker",
5
- "limit_key": "MaxItems",
6
- "more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
7
- "output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
8
- "result_key": "CloudFrontOriginAccessIdentityList.Items"
9
- },
10
- "ListDistributions": {
11
- "input_token": "Marker",
12
- "limit_key": "MaxItems",
13
- "more_results": "DistributionList.IsTruncated",
14
- "output_token": "DistributionList.NextMarker",
15
- "result_key": "DistributionList.Items"
16
- },
17
- "ListInvalidations": {
18
- "input_token": "Marker",
19
- "limit_key": "MaxItems",
20
- "more_results": "InvalidationList.IsTruncated",
21
- "output_token": "InvalidationList.NextMarker",
22
- "result_key": "InvalidationList.Items"
23
- },
24
- "ListStreamingDistributions": {
25
- "input_token": "Marker",
26
- "limit_key": "MaxItems",
27
- "more_results": "StreamingDistributionList.IsTruncated",
28
- "output_token": "StreamingDistributionList.NextMarker",
29
- "result_key": "StreamingDistributionList.Items"
30
- }
31
- }
32
- }
@@ -1,20 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-east-1",
4
- "testCases": [
5
- {
6
- "operationName": "ListCloudFrontOriginAccessIdentities",
7
- "input": {
8
- "MaxItems": "1"
9
- },
10
- "errorExpectedFromService": false
11
- },
12
- {
13
- "operationName": "GetDistribution",
14
- "input": {
15
- "Id": "fake-id"
16
- },
17
- "errorExpectedFromService": true
18
- }
19
- ]
20
- }
@@ -1,47 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "DistributionDeployed": {
5
- "delay": 60,
6
- "operation": "GetDistribution",
7
- "maxAttempts": 25,
8
- "description": "Wait until a distribution is deployed.",
9
- "acceptors": [
10
- {
11
- "expected": "Deployed",
12
- "matcher": "path",
13
- "state": "success",
14
- "argument": "Distribution.Status"
15
- }
16
- ]
17
- },
18
- "InvalidationCompleted": {
19
- "delay": 20,
20
- "operation": "GetInvalidation",
21
- "maxAttempts": 30,
22
- "description": "Wait until an invalidation has completed.",
23
- "acceptors": [
24
- {
25
- "expected": "Completed",
26
- "matcher": "path",
27
- "state": "success",
28
- "argument": "Invalidation.Status"
29
- }
30
- ]
31
- },
32
- "StreamingDistributionDeployed": {
33
- "delay": 60,
34
- "operation": "GetStreamingDistribution",
35
- "maxAttempts": 25,
36
- "description": "Wait until a streaming distribution is deployed.",
37
- "acceptors": [
38
- {
39
- "expected": "Deployed",
40
- "matcher": "path",
41
- "state": "success",
42
- "argument": "StreamingDistribution.Status"
43
- }
44
- ]
45
- }
46
- }
47
- }
@@ -1,4004 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2018-11-05",
5
- "endpointPrefix":"cloudfront",
6
- "globalEndpoint":"cloudfront.amazonaws.com",
7
- "protocol":"rest-xml",
8
- "serviceAbbreviation":"CloudFront",
9
- "serviceFullName":"Amazon CloudFront",
10
- "serviceId":"CloudFront",
11
- "signatureVersion":"v4",
12
- "uid":"cloudfront-2018-11-05"
13
- },
14
- "operations":{
15
- "CreateCloudFrontOriginAccessIdentity":{
16
- "name":"CreateCloudFrontOriginAccessIdentity2018_11_05",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/2018-11-05/origin-access-identity/cloudfront",
20
- "responseCode":201
21
- },
22
- "input":{"shape":"CreateCloudFrontOriginAccessIdentityRequest"},
23
- "output":{"shape":"CreateCloudFrontOriginAccessIdentityResult"},
24
- "errors":[
25
- {"shape":"CloudFrontOriginAccessIdentityAlreadyExists"},
26
- {"shape":"MissingBody"},
27
- {"shape":"TooManyCloudFrontOriginAccessIdentities"},
28
- {"shape":"InvalidArgument"},
29
- {"shape":"InconsistentQuantities"}
30
- ]
31
- },
32
- "CreateDistribution":{
33
- "name":"CreateDistribution2018_11_05",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/2018-11-05/distribution",
37
- "responseCode":201
38
- },
39
- "input":{"shape":"CreateDistributionRequest"},
40
- "output":{"shape":"CreateDistributionResult"},
41
- "errors":[
42
- {"shape":"CNAMEAlreadyExists"},
43
- {"shape":"DistributionAlreadyExists"},
44
- {"shape":"InvalidOrigin"},
45
- {"shape":"InvalidOriginAccessIdentity"},
46
- {"shape":"AccessDenied"},
47
- {"shape":"TooManyTrustedSigners"},
48
- {"shape":"TrustedSignerDoesNotExist"},
49
- {"shape":"InvalidViewerCertificate"},
50
- {"shape":"InvalidMinimumProtocolVersion"},
51
- {"shape":"MissingBody"},
52
- {"shape":"TooManyDistributionCNAMEs"},
53
- {"shape":"TooManyDistributions"},
54
- {"shape":"InvalidDefaultRootObject"},
55
- {"shape":"InvalidRelativePath"},
56
- {"shape":"InvalidErrorCode"},
57
- {"shape":"InvalidResponseCode"},
58
- {"shape":"InvalidArgument"},
59
- {"shape":"InvalidRequiredProtocol"},
60
- {"shape":"NoSuchOrigin"},
61
- {"shape":"TooManyOrigins"},
62
- {"shape":"TooManyOriginGroupsPerDistribution"},
63
- {"shape":"TooManyCacheBehaviors"},
64
- {"shape":"TooManyCookieNamesInWhiteList"},
65
- {"shape":"InvalidForwardCookies"},
66
- {"shape":"TooManyHeadersInForwardedValues"},
67
- {"shape":"InvalidHeadersForS3Origin"},
68
- {"shape":"InconsistentQuantities"},
69
- {"shape":"TooManyCertificates"},
70
- {"shape":"InvalidLocationCode"},
71
- {"shape":"InvalidGeoRestrictionParameter"},
72
- {"shape":"InvalidProtocolSettings"},
73
- {"shape":"InvalidTTLOrder"},
74
- {"shape":"InvalidWebACLId"},
75
- {"shape":"TooManyOriginCustomHeaders"},
76
- {"shape":"TooManyQueryStringParameters"},
77
- {"shape":"InvalidQueryStringParameters"},
78
- {"shape":"TooManyDistributionsWithLambdaAssociations"},
79
- {"shape":"TooManyLambdaFunctionAssociations"},
80
- {"shape":"InvalidLambdaFunctionAssociation"},
81
- {"shape":"InvalidOriginReadTimeout"},
82
- {"shape":"InvalidOriginKeepaliveTimeout"},
83
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
84
- {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
85
- {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
86
- ]
87
- },
88
- "CreateDistributionWithTags":{
89
- "name":"CreateDistributionWithTags2018_11_05",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/2018-11-05/distribution?WithTags",
93
- "responseCode":201
94
- },
95
- "input":{"shape":"CreateDistributionWithTagsRequest"},
96
- "output":{"shape":"CreateDistributionWithTagsResult"},
97
- "errors":[
98
- {"shape":"CNAMEAlreadyExists"},
99
- {"shape":"DistributionAlreadyExists"},
100
- {"shape":"InvalidOrigin"},
101
- {"shape":"InvalidOriginAccessIdentity"},
102
- {"shape":"AccessDenied"},
103
- {"shape":"TooManyTrustedSigners"},
104
- {"shape":"TrustedSignerDoesNotExist"},
105
- {"shape":"InvalidViewerCertificate"},
106
- {"shape":"InvalidMinimumProtocolVersion"},
107
- {"shape":"MissingBody"},
108
- {"shape":"TooManyDistributionCNAMEs"},
109
- {"shape":"TooManyDistributions"},
110
- {"shape":"InvalidDefaultRootObject"},
111
- {"shape":"InvalidRelativePath"},
112
- {"shape":"InvalidErrorCode"},
113
- {"shape":"InvalidResponseCode"},
114
- {"shape":"InvalidArgument"},
115
- {"shape":"InvalidRequiredProtocol"},
116
- {"shape":"NoSuchOrigin"},
117
- {"shape":"TooManyOrigins"},
118
- {"shape":"TooManyOriginGroupsPerDistribution"},
119
- {"shape":"TooManyCacheBehaviors"},
120
- {"shape":"TooManyCookieNamesInWhiteList"},
121
- {"shape":"InvalidForwardCookies"},
122
- {"shape":"TooManyHeadersInForwardedValues"},
123
- {"shape":"InvalidHeadersForS3Origin"},
124
- {"shape":"InconsistentQuantities"},
125
- {"shape":"TooManyCertificates"},
126
- {"shape":"InvalidLocationCode"},
127
- {"shape":"InvalidGeoRestrictionParameter"},
128
- {"shape":"InvalidProtocolSettings"},
129
- {"shape":"InvalidTTLOrder"},
130
- {"shape":"InvalidWebACLId"},
131
- {"shape":"TooManyOriginCustomHeaders"},
132
- {"shape":"InvalidTagging"},
133
- {"shape":"TooManyQueryStringParameters"},
134
- {"shape":"InvalidQueryStringParameters"},
135
- {"shape":"TooManyDistributionsWithLambdaAssociations"},
136
- {"shape":"TooManyLambdaFunctionAssociations"},
137
- {"shape":"InvalidLambdaFunctionAssociation"},
138
- {"shape":"InvalidOriginReadTimeout"},
139
- {"shape":"InvalidOriginKeepaliveTimeout"},
140
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
141
- {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
142
- {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
143
- ]
144
- },
145
- "CreateFieldLevelEncryptionConfig":{
146
- "name":"CreateFieldLevelEncryptionConfig2018_11_05",
147
- "http":{
148
- "method":"POST",
149
- "requestUri":"/2018-11-05/field-level-encryption",
150
- "responseCode":201
151
- },
152
- "input":{"shape":"CreateFieldLevelEncryptionConfigRequest"},
153
- "output":{"shape":"CreateFieldLevelEncryptionConfigResult"},
154
- "errors":[
155
- {"shape":"InconsistentQuantities"},
156
- {"shape":"InvalidArgument"},
157
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
158
- {"shape":"FieldLevelEncryptionConfigAlreadyExists"},
159
- {"shape":"TooManyFieldLevelEncryptionConfigs"},
160
- {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
161
- {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
162
- {"shape":"QueryArgProfileEmpty"}
163
- ]
164
- },
165
- "CreateFieldLevelEncryptionProfile":{
166
- "name":"CreateFieldLevelEncryptionProfile2018_11_05",
167
- "http":{
168
- "method":"POST",
169
- "requestUri":"/2018-11-05/field-level-encryption-profile",
170
- "responseCode":201
171
- },
172
- "input":{"shape":"CreateFieldLevelEncryptionProfileRequest"},
173
- "output":{"shape":"CreateFieldLevelEncryptionProfileResult"},
174
- "errors":[
175
- {"shape":"InconsistentQuantities"},
176
- {"shape":"InvalidArgument"},
177
- {"shape":"NoSuchPublicKey"},
178
- {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
179
- {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
180
- {"shape":"TooManyFieldLevelEncryptionProfiles"},
181
- {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
182
- {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
183
- ]
184
- },
185
- "CreateInvalidation":{
186
- "name":"CreateInvalidation2018_11_05",
187
- "http":{
188
- "method":"POST",
189
- "requestUri":"/2018-11-05/distribution/{DistributionId}/invalidation",
190
- "responseCode":201
191
- },
192
- "input":{"shape":"CreateInvalidationRequest"},
193
- "output":{"shape":"CreateInvalidationResult"},
194
- "errors":[
195
- {"shape":"AccessDenied"},
196
- {"shape":"MissingBody"},
197
- {"shape":"InvalidArgument"},
198
- {"shape":"NoSuchDistribution"},
199
- {"shape":"BatchTooLarge"},
200
- {"shape":"TooManyInvalidationsInProgress"},
201
- {"shape":"InconsistentQuantities"}
202
- ]
203
- },
204
- "CreatePublicKey":{
205
- "name":"CreatePublicKey2018_11_05",
206
- "http":{
207
- "method":"POST",
208
- "requestUri":"/2018-11-05/public-key",
209
- "responseCode":201
210
- },
211
- "input":{"shape":"CreatePublicKeyRequest"},
212
- "output":{"shape":"CreatePublicKeyResult"},
213
- "errors":[
214
- {"shape":"PublicKeyAlreadyExists"},
215
- {"shape":"InvalidArgument"},
216
- {"shape":"TooManyPublicKeys"}
217
- ]
218
- },
219
- "CreateStreamingDistribution":{
220
- "name":"CreateStreamingDistribution2018_11_05",
221
- "http":{
222
- "method":"POST",
223
- "requestUri":"/2018-11-05/streaming-distribution",
224
- "responseCode":201
225
- },
226
- "input":{"shape":"CreateStreamingDistributionRequest"},
227
- "output":{"shape":"CreateStreamingDistributionResult"},
228
- "errors":[
229
- {"shape":"CNAMEAlreadyExists"},
230
- {"shape":"StreamingDistributionAlreadyExists"},
231
- {"shape":"InvalidOrigin"},
232
- {"shape":"InvalidOriginAccessIdentity"},
233
- {"shape":"AccessDenied"},
234
- {"shape":"TooManyTrustedSigners"},
235
- {"shape":"TrustedSignerDoesNotExist"},
236
- {"shape":"MissingBody"},
237
- {"shape":"TooManyStreamingDistributionCNAMEs"},
238
- {"shape":"TooManyStreamingDistributions"},
239
- {"shape":"InvalidArgument"},
240
- {"shape":"InconsistentQuantities"}
241
- ]
242
- },
243
- "CreateStreamingDistributionWithTags":{
244
- "name":"CreateStreamingDistributionWithTags2018_11_05",
245
- "http":{
246
- "method":"POST",
247
- "requestUri":"/2018-11-05/streaming-distribution?WithTags",
248
- "responseCode":201
249
- },
250
- "input":{"shape":"CreateStreamingDistributionWithTagsRequest"},
251
- "output":{"shape":"CreateStreamingDistributionWithTagsResult"},
252
- "errors":[
253
- {"shape":"CNAMEAlreadyExists"},
254
- {"shape":"StreamingDistributionAlreadyExists"},
255
- {"shape":"InvalidOrigin"},
256
- {"shape":"InvalidOriginAccessIdentity"},
257
- {"shape":"AccessDenied"},
258
- {"shape":"TooManyTrustedSigners"},
259
- {"shape":"TrustedSignerDoesNotExist"},
260
- {"shape":"MissingBody"},
261
- {"shape":"TooManyStreamingDistributionCNAMEs"},
262
- {"shape":"TooManyStreamingDistributions"},
263
- {"shape":"InvalidArgument"},
264
- {"shape":"InconsistentQuantities"},
265
- {"shape":"InvalidTagging"}
266
- ]
267
- },
268
- "DeleteCloudFrontOriginAccessIdentity":{
269
- "name":"DeleteCloudFrontOriginAccessIdentity2018_11_05",
270
- "http":{
271
- "method":"DELETE",
272
- "requestUri":"/2018-11-05/origin-access-identity/cloudfront/{Id}",
273
- "responseCode":204
274
- },
275
- "input":{"shape":"DeleteCloudFrontOriginAccessIdentityRequest"},
276
- "errors":[
277
- {"shape":"AccessDenied"},
278
- {"shape":"InvalidIfMatchVersion"},
279
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
280
- {"shape":"PreconditionFailed"},
281
- {"shape":"CloudFrontOriginAccessIdentityInUse"}
282
- ]
283
- },
284
- "DeleteDistribution":{
285
- "name":"DeleteDistribution2018_11_05",
286
- "http":{
287
- "method":"DELETE",
288
- "requestUri":"/2018-11-05/distribution/{Id}",
289
- "responseCode":204
290
- },
291
- "input":{"shape":"DeleteDistributionRequest"},
292
- "errors":[
293
- {"shape":"AccessDenied"},
294
- {"shape":"DistributionNotDisabled"},
295
- {"shape":"InvalidIfMatchVersion"},
296
- {"shape":"NoSuchDistribution"},
297
- {"shape":"PreconditionFailed"}
298
- ]
299
- },
300
- "DeleteFieldLevelEncryptionConfig":{
301
- "name":"DeleteFieldLevelEncryptionConfig2018_11_05",
302
- "http":{
303
- "method":"DELETE",
304
- "requestUri":"/2018-11-05/field-level-encryption/{Id}",
305
- "responseCode":204
306
- },
307
- "input":{"shape":"DeleteFieldLevelEncryptionConfigRequest"},
308
- "errors":[
309
- {"shape":"AccessDenied"},
310
- {"shape":"InvalidIfMatchVersion"},
311
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
312
- {"shape":"PreconditionFailed"},
313
- {"shape":"FieldLevelEncryptionConfigInUse"}
314
- ]
315
- },
316
- "DeleteFieldLevelEncryptionProfile":{
317
- "name":"DeleteFieldLevelEncryptionProfile2018_11_05",
318
- "http":{
319
- "method":"DELETE",
320
- "requestUri":"/2018-11-05/field-level-encryption-profile/{Id}",
321
- "responseCode":204
322
- },
323
- "input":{"shape":"DeleteFieldLevelEncryptionProfileRequest"},
324
- "errors":[
325
- {"shape":"AccessDenied"},
326
- {"shape":"InvalidIfMatchVersion"},
327
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
328
- {"shape":"PreconditionFailed"},
329
- {"shape":"FieldLevelEncryptionProfileInUse"}
330
- ]
331
- },
332
- "DeletePublicKey":{
333
- "name":"DeletePublicKey2018_11_05",
334
- "http":{
335
- "method":"DELETE",
336
- "requestUri":"/2018-11-05/public-key/{Id}",
337
- "responseCode":204
338
- },
339
- "input":{"shape":"DeletePublicKeyRequest"},
340
- "errors":[
341
- {"shape":"AccessDenied"},
342
- {"shape":"PublicKeyInUse"},
343
- {"shape":"InvalidIfMatchVersion"},
344
- {"shape":"NoSuchPublicKey"},
345
- {"shape":"PreconditionFailed"}
346
- ]
347
- },
348
- "DeleteStreamingDistribution":{
349
- "name":"DeleteStreamingDistribution2018_11_05",
350
- "http":{
351
- "method":"DELETE",
352
- "requestUri":"/2018-11-05/streaming-distribution/{Id}",
353
- "responseCode":204
354
- },
355
- "input":{"shape":"DeleteStreamingDistributionRequest"},
356
- "errors":[
357
- {"shape":"AccessDenied"},
358
- {"shape":"StreamingDistributionNotDisabled"},
359
- {"shape":"InvalidIfMatchVersion"},
360
- {"shape":"NoSuchStreamingDistribution"},
361
- {"shape":"PreconditionFailed"}
362
- ]
363
- },
364
- "GetCloudFrontOriginAccessIdentity":{
365
- "name":"GetCloudFrontOriginAccessIdentity2018_11_05",
366
- "http":{
367
- "method":"GET",
368
- "requestUri":"/2018-11-05/origin-access-identity/cloudfront/{Id}"
369
- },
370
- "input":{"shape":"GetCloudFrontOriginAccessIdentityRequest"},
371
- "output":{"shape":"GetCloudFrontOriginAccessIdentityResult"},
372
- "errors":[
373
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
374
- {"shape":"AccessDenied"}
375
- ]
376
- },
377
- "GetCloudFrontOriginAccessIdentityConfig":{
378
- "name":"GetCloudFrontOriginAccessIdentityConfig2018_11_05",
379
- "http":{
380
- "method":"GET",
381
- "requestUri":"/2018-11-05/origin-access-identity/cloudfront/{Id}/config"
382
- },
383
- "input":{"shape":"GetCloudFrontOriginAccessIdentityConfigRequest"},
384
- "output":{"shape":"GetCloudFrontOriginAccessIdentityConfigResult"},
385
- "errors":[
386
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
387
- {"shape":"AccessDenied"}
388
- ]
389
- },
390
- "GetDistribution":{
391
- "name":"GetDistribution2018_11_05",
392
- "http":{
393
- "method":"GET",
394
- "requestUri":"/2018-11-05/distribution/{Id}"
395
- },
396
- "input":{"shape":"GetDistributionRequest"},
397
- "output":{"shape":"GetDistributionResult"},
398
- "errors":[
399
- {"shape":"NoSuchDistribution"},
400
- {"shape":"AccessDenied"}
401
- ]
402
- },
403
- "GetDistributionConfig":{
404
- "name":"GetDistributionConfig2018_11_05",
405
- "http":{
406
- "method":"GET",
407
- "requestUri":"/2018-11-05/distribution/{Id}/config"
408
- },
409
- "input":{"shape":"GetDistributionConfigRequest"},
410
- "output":{"shape":"GetDistributionConfigResult"},
411
- "errors":[
412
- {"shape":"NoSuchDistribution"},
413
- {"shape":"AccessDenied"}
414
- ]
415
- },
416
- "GetFieldLevelEncryption":{
417
- "name":"GetFieldLevelEncryption2018_11_05",
418
- "http":{
419
- "method":"GET",
420
- "requestUri":"/2018-11-05/field-level-encryption/{Id}"
421
- },
422
- "input":{"shape":"GetFieldLevelEncryptionRequest"},
423
- "output":{"shape":"GetFieldLevelEncryptionResult"},
424
- "errors":[
425
- {"shape":"AccessDenied"},
426
- {"shape":"NoSuchFieldLevelEncryptionConfig"}
427
- ]
428
- },
429
- "GetFieldLevelEncryptionConfig":{
430
- "name":"GetFieldLevelEncryptionConfig2018_11_05",
431
- "http":{
432
- "method":"GET",
433
- "requestUri":"/2018-11-05/field-level-encryption/{Id}/config"
434
- },
435
- "input":{"shape":"GetFieldLevelEncryptionConfigRequest"},
436
- "output":{"shape":"GetFieldLevelEncryptionConfigResult"},
437
- "errors":[
438
- {"shape":"AccessDenied"},
439
- {"shape":"NoSuchFieldLevelEncryptionConfig"}
440
- ]
441
- },
442
- "GetFieldLevelEncryptionProfile":{
443
- "name":"GetFieldLevelEncryptionProfile2018_11_05",
444
- "http":{
445
- "method":"GET",
446
- "requestUri":"/2018-11-05/field-level-encryption-profile/{Id}"
447
- },
448
- "input":{"shape":"GetFieldLevelEncryptionProfileRequest"},
449
- "output":{"shape":"GetFieldLevelEncryptionProfileResult"},
450
- "errors":[
451
- {"shape":"AccessDenied"},
452
- {"shape":"NoSuchFieldLevelEncryptionProfile"}
453
- ]
454
- },
455
- "GetFieldLevelEncryptionProfileConfig":{
456
- "name":"GetFieldLevelEncryptionProfileConfig2018_11_05",
457
- "http":{
458
- "method":"GET",
459
- "requestUri":"/2018-11-05/field-level-encryption-profile/{Id}/config"
460
- },
461
- "input":{"shape":"GetFieldLevelEncryptionProfileConfigRequest"},
462
- "output":{"shape":"GetFieldLevelEncryptionProfileConfigResult"},
463
- "errors":[
464
- {"shape":"AccessDenied"},
465
- {"shape":"NoSuchFieldLevelEncryptionProfile"}
466
- ]
467
- },
468
- "GetInvalidation":{
469
- "name":"GetInvalidation2018_11_05",
470
- "http":{
471
- "method":"GET",
472
- "requestUri":"/2018-11-05/distribution/{DistributionId}/invalidation/{Id}"
473
- },
474
- "input":{"shape":"GetInvalidationRequest"},
475
- "output":{"shape":"GetInvalidationResult"},
476
- "errors":[
477
- {"shape":"NoSuchInvalidation"},
478
- {"shape":"NoSuchDistribution"},
479
- {"shape":"AccessDenied"}
480
- ]
481
- },
482
- "GetPublicKey":{
483
- "name":"GetPublicKey2018_11_05",
484
- "http":{
485
- "method":"GET",
486
- "requestUri":"/2018-11-05/public-key/{Id}"
487
- },
488
- "input":{"shape":"GetPublicKeyRequest"},
489
- "output":{"shape":"GetPublicKeyResult"},
490
- "errors":[
491
- {"shape":"AccessDenied"},
492
- {"shape":"NoSuchPublicKey"}
493
- ]
494
- },
495
- "GetPublicKeyConfig":{
496
- "name":"GetPublicKeyConfig2018_11_05",
497
- "http":{
498
- "method":"GET",
499
- "requestUri":"/2018-11-05/public-key/{Id}/config"
500
- },
501
- "input":{"shape":"GetPublicKeyConfigRequest"},
502
- "output":{"shape":"GetPublicKeyConfigResult"},
503
- "errors":[
504
- {"shape":"AccessDenied"},
505
- {"shape":"NoSuchPublicKey"}
506
- ]
507
- },
508
- "GetStreamingDistribution":{
509
- "name":"GetStreamingDistribution2018_11_05",
510
- "http":{
511
- "method":"GET",
512
- "requestUri":"/2018-11-05/streaming-distribution/{Id}"
513
- },
514
- "input":{"shape":"GetStreamingDistributionRequest"},
515
- "output":{"shape":"GetStreamingDistributionResult"},
516
- "errors":[
517
- {"shape":"NoSuchStreamingDistribution"},
518
- {"shape":"AccessDenied"}
519
- ]
520
- },
521
- "GetStreamingDistributionConfig":{
522
- "name":"GetStreamingDistributionConfig2018_11_05",
523
- "http":{
524
- "method":"GET",
525
- "requestUri":"/2018-11-05/streaming-distribution/{Id}/config"
526
- },
527
- "input":{"shape":"GetStreamingDistributionConfigRequest"},
528
- "output":{"shape":"GetStreamingDistributionConfigResult"},
529
- "errors":[
530
- {"shape":"NoSuchStreamingDistribution"},
531
- {"shape":"AccessDenied"}
532
- ]
533
- },
534
- "ListCloudFrontOriginAccessIdentities":{
535
- "name":"ListCloudFrontOriginAccessIdentities2018_11_05",
536
- "http":{
537
- "method":"GET",
538
- "requestUri":"/2018-11-05/origin-access-identity/cloudfront"
539
- },
540
- "input":{"shape":"ListCloudFrontOriginAccessIdentitiesRequest"},
541
- "output":{"shape":"ListCloudFrontOriginAccessIdentitiesResult"},
542
- "errors":[
543
- {"shape":"InvalidArgument"}
544
- ]
545
- },
546
- "ListDistributions":{
547
- "name":"ListDistributions2018_11_05",
548
- "http":{
549
- "method":"GET",
550
- "requestUri":"/2018-11-05/distribution"
551
- },
552
- "input":{"shape":"ListDistributionsRequest"},
553
- "output":{"shape":"ListDistributionsResult"},
554
- "errors":[
555
- {"shape":"InvalidArgument"}
556
- ]
557
- },
558
- "ListDistributionsByWebACLId":{
559
- "name":"ListDistributionsByWebACLId2018_11_05",
560
- "http":{
561
- "method":"GET",
562
- "requestUri":"/2018-11-05/distributionsByWebACLId/{WebACLId}"
563
- },
564
- "input":{"shape":"ListDistributionsByWebACLIdRequest"},
565
- "output":{"shape":"ListDistributionsByWebACLIdResult"},
566
- "errors":[
567
- {"shape":"InvalidArgument"},
568
- {"shape":"InvalidWebACLId"}
569
- ]
570
- },
571
- "ListFieldLevelEncryptionConfigs":{
572
- "name":"ListFieldLevelEncryptionConfigs2018_11_05",
573
- "http":{
574
- "method":"GET",
575
- "requestUri":"/2018-11-05/field-level-encryption"
576
- },
577
- "input":{"shape":"ListFieldLevelEncryptionConfigsRequest"},
578
- "output":{"shape":"ListFieldLevelEncryptionConfigsResult"},
579
- "errors":[
580
- {"shape":"InvalidArgument"}
581
- ]
582
- },
583
- "ListFieldLevelEncryptionProfiles":{
584
- "name":"ListFieldLevelEncryptionProfiles2018_11_05",
585
- "http":{
586
- "method":"GET",
587
- "requestUri":"/2018-11-05/field-level-encryption-profile"
588
- },
589
- "input":{"shape":"ListFieldLevelEncryptionProfilesRequest"},
590
- "output":{"shape":"ListFieldLevelEncryptionProfilesResult"},
591
- "errors":[
592
- {"shape":"InvalidArgument"}
593
- ]
594
- },
595
- "ListInvalidations":{
596
- "name":"ListInvalidations2018_11_05",
597
- "http":{
598
- "method":"GET",
599
- "requestUri":"/2018-11-05/distribution/{DistributionId}/invalidation"
600
- },
601
- "input":{"shape":"ListInvalidationsRequest"},
602
- "output":{"shape":"ListInvalidationsResult"},
603
- "errors":[
604
- {"shape":"InvalidArgument"},
605
- {"shape":"NoSuchDistribution"},
606
- {"shape":"AccessDenied"}
607
- ]
608
- },
609
- "ListPublicKeys":{
610
- "name":"ListPublicKeys2018_11_05",
611
- "http":{
612
- "method":"GET",
613
- "requestUri":"/2018-11-05/public-key"
614
- },
615
- "input":{"shape":"ListPublicKeysRequest"},
616
- "output":{"shape":"ListPublicKeysResult"},
617
- "errors":[
618
- {"shape":"InvalidArgument"}
619
- ]
620
- },
621
- "ListStreamingDistributions":{
622
- "name":"ListStreamingDistributions2018_11_05",
623
- "http":{
624
- "method":"GET",
625
- "requestUri":"/2018-11-05/streaming-distribution"
626
- },
627
- "input":{"shape":"ListStreamingDistributionsRequest"},
628
- "output":{"shape":"ListStreamingDistributionsResult"},
629
- "errors":[
630
- {"shape":"InvalidArgument"}
631
- ]
632
- },
633
- "ListTagsForResource":{
634
- "name":"ListTagsForResource2018_11_05",
635
- "http":{
636
- "method":"GET",
637
- "requestUri":"/2018-11-05/tagging"
638
- },
639
- "input":{"shape":"ListTagsForResourceRequest"},
640
- "output":{"shape":"ListTagsForResourceResult"},
641
- "errors":[
642
- {"shape":"AccessDenied"},
643
- {"shape":"InvalidArgument"},
644
- {"shape":"InvalidTagging"},
645
- {"shape":"NoSuchResource"}
646
- ]
647
- },
648
- "TagResource":{
649
- "name":"TagResource2018_11_05",
650
- "http":{
651
- "method":"POST",
652
- "requestUri":"/2018-11-05/tagging?Operation=Tag",
653
- "responseCode":204
654
- },
655
- "input":{"shape":"TagResourceRequest"},
656
- "errors":[
657
- {"shape":"AccessDenied"},
658
- {"shape":"InvalidArgument"},
659
- {"shape":"InvalidTagging"},
660
- {"shape":"NoSuchResource"}
661
- ]
662
- },
663
- "UntagResource":{
664
- "name":"UntagResource2018_11_05",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/2018-11-05/tagging?Operation=Untag",
668
- "responseCode":204
669
- },
670
- "input":{"shape":"UntagResourceRequest"},
671
- "errors":[
672
- {"shape":"AccessDenied"},
673
- {"shape":"InvalidArgument"},
674
- {"shape":"InvalidTagging"},
675
- {"shape":"NoSuchResource"}
676
- ]
677
- },
678
- "UpdateCloudFrontOriginAccessIdentity":{
679
- "name":"UpdateCloudFrontOriginAccessIdentity2018_11_05",
680
- "http":{
681
- "method":"PUT",
682
- "requestUri":"/2018-11-05/origin-access-identity/cloudfront/{Id}/config"
683
- },
684
- "input":{"shape":"UpdateCloudFrontOriginAccessIdentityRequest"},
685
- "output":{"shape":"UpdateCloudFrontOriginAccessIdentityResult"},
686
- "errors":[
687
- {"shape":"AccessDenied"},
688
- {"shape":"IllegalUpdate"},
689
- {"shape":"InvalidIfMatchVersion"},
690
- {"shape":"MissingBody"},
691
- {"shape":"NoSuchCloudFrontOriginAccessIdentity"},
692
- {"shape":"PreconditionFailed"},
693
- {"shape":"InvalidArgument"},
694
- {"shape":"InconsistentQuantities"}
695
- ]
696
- },
697
- "UpdateDistribution":{
698
- "name":"UpdateDistribution2018_11_05",
699
- "http":{
700
- "method":"PUT",
701
- "requestUri":"/2018-11-05/distribution/{Id}/config"
702
- },
703
- "input":{"shape":"UpdateDistributionRequest"},
704
- "output":{"shape":"UpdateDistributionResult"},
705
- "errors":[
706
- {"shape":"AccessDenied"},
707
- {"shape":"CNAMEAlreadyExists"},
708
- {"shape":"IllegalUpdate"},
709
- {"shape":"InvalidIfMatchVersion"},
710
- {"shape":"MissingBody"},
711
- {"shape":"NoSuchDistribution"},
712
- {"shape":"PreconditionFailed"},
713
- {"shape":"TooManyDistributionCNAMEs"},
714
- {"shape":"InvalidDefaultRootObject"},
715
- {"shape":"InvalidRelativePath"},
716
- {"shape":"InvalidErrorCode"},
717
- {"shape":"InvalidResponseCode"},
718
- {"shape":"InvalidArgument"},
719
- {"shape":"InvalidOriginAccessIdentity"},
720
- {"shape":"TooManyTrustedSigners"},
721
- {"shape":"TrustedSignerDoesNotExist"},
722
- {"shape":"InvalidViewerCertificate"},
723
- {"shape":"InvalidMinimumProtocolVersion"},
724
- {"shape":"InvalidRequiredProtocol"},
725
- {"shape":"NoSuchOrigin"},
726
- {"shape":"TooManyOrigins"},
727
- {"shape":"TooManyOriginGroupsPerDistribution"},
728
- {"shape":"TooManyCacheBehaviors"},
729
- {"shape":"TooManyCookieNamesInWhiteList"},
730
- {"shape":"InvalidForwardCookies"},
731
- {"shape":"TooManyHeadersInForwardedValues"},
732
- {"shape":"InvalidHeadersForS3Origin"},
733
- {"shape":"InconsistentQuantities"},
734
- {"shape":"TooManyCertificates"},
735
- {"shape":"InvalidLocationCode"},
736
- {"shape":"InvalidGeoRestrictionParameter"},
737
- {"shape":"InvalidTTLOrder"},
738
- {"shape":"InvalidWebACLId"},
739
- {"shape":"TooManyOriginCustomHeaders"},
740
- {"shape":"TooManyQueryStringParameters"},
741
- {"shape":"InvalidQueryStringParameters"},
742
- {"shape":"TooManyDistributionsWithLambdaAssociations"},
743
- {"shape":"TooManyLambdaFunctionAssociations"},
744
- {"shape":"InvalidLambdaFunctionAssociation"},
745
- {"shape":"InvalidOriginReadTimeout"},
746
- {"shape":"InvalidOriginKeepaliveTimeout"},
747
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
748
- {"shape":"IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior"},
749
- {"shape":"TooManyDistributionsAssociatedToFieldLevelEncryptionConfig"}
750
- ]
751
- },
752
- "UpdateFieldLevelEncryptionConfig":{
753
- "name":"UpdateFieldLevelEncryptionConfig2018_11_05",
754
- "http":{
755
- "method":"PUT",
756
- "requestUri":"/2018-11-05/field-level-encryption/{Id}/config"
757
- },
758
- "input":{"shape":"UpdateFieldLevelEncryptionConfigRequest"},
759
- "output":{"shape":"UpdateFieldLevelEncryptionConfigResult"},
760
- "errors":[
761
- {"shape":"AccessDenied"},
762
- {"shape":"IllegalUpdate"},
763
- {"shape":"InconsistentQuantities"},
764
- {"shape":"InvalidArgument"},
765
- {"shape":"InvalidIfMatchVersion"},
766
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
767
- {"shape":"NoSuchFieldLevelEncryptionConfig"},
768
- {"shape":"PreconditionFailed"},
769
- {"shape":"TooManyFieldLevelEncryptionQueryArgProfiles"},
770
- {"shape":"TooManyFieldLevelEncryptionContentTypeProfiles"},
771
- {"shape":"QueryArgProfileEmpty"}
772
- ]
773
- },
774
- "UpdateFieldLevelEncryptionProfile":{
775
- "name":"UpdateFieldLevelEncryptionProfile2018_11_05",
776
- "http":{
777
- "method":"PUT",
778
- "requestUri":"/2018-11-05/field-level-encryption-profile/{Id}/config"
779
- },
780
- "input":{"shape":"UpdateFieldLevelEncryptionProfileRequest"},
781
- "output":{"shape":"UpdateFieldLevelEncryptionProfileResult"},
782
- "errors":[
783
- {"shape":"AccessDenied"},
784
- {"shape":"FieldLevelEncryptionProfileAlreadyExists"},
785
- {"shape":"IllegalUpdate"},
786
- {"shape":"InconsistentQuantities"},
787
- {"shape":"InvalidArgument"},
788
- {"shape":"InvalidIfMatchVersion"},
789
- {"shape":"NoSuchPublicKey"},
790
- {"shape":"NoSuchFieldLevelEncryptionProfile"},
791
- {"shape":"PreconditionFailed"},
792
- {"shape":"FieldLevelEncryptionProfileSizeExceeded"},
793
- {"shape":"TooManyFieldLevelEncryptionEncryptionEntities"},
794
- {"shape":"TooManyFieldLevelEncryptionFieldPatterns"}
795
- ]
796
- },
797
- "UpdatePublicKey":{
798
- "name":"UpdatePublicKey2018_11_05",
799
- "http":{
800
- "method":"PUT",
801
- "requestUri":"/2018-11-05/public-key/{Id}/config"
802
- },
803
- "input":{"shape":"UpdatePublicKeyRequest"},
804
- "output":{"shape":"UpdatePublicKeyResult"},
805
- "errors":[
806
- {"shape":"AccessDenied"},
807
- {"shape":"CannotChangeImmutablePublicKeyFields"},
808
- {"shape":"InvalidArgument"},
809
- {"shape":"InvalidIfMatchVersion"},
810
- {"shape":"IllegalUpdate"},
811
- {"shape":"NoSuchPublicKey"},
812
- {"shape":"PreconditionFailed"}
813
- ]
814
- },
815
- "UpdateStreamingDistribution":{
816
- "name":"UpdateStreamingDistribution2018_11_05",
817
- "http":{
818
- "method":"PUT",
819
- "requestUri":"/2018-11-05/streaming-distribution/{Id}/config"
820
- },
821
- "input":{"shape":"UpdateStreamingDistributionRequest"},
822
- "output":{"shape":"UpdateStreamingDistributionResult"},
823
- "errors":[
824
- {"shape":"AccessDenied"},
825
- {"shape":"CNAMEAlreadyExists"},
826
- {"shape":"IllegalUpdate"},
827
- {"shape":"InvalidIfMatchVersion"},
828
- {"shape":"MissingBody"},
829
- {"shape":"NoSuchStreamingDistribution"},
830
- {"shape":"PreconditionFailed"},
831
- {"shape":"TooManyStreamingDistributionCNAMEs"},
832
- {"shape":"InvalidArgument"},
833
- {"shape":"InvalidOriginAccessIdentity"},
834
- {"shape":"TooManyTrustedSigners"},
835
- {"shape":"TrustedSignerDoesNotExist"},
836
- {"shape":"InconsistentQuantities"}
837
- ]
838
- }
839
- },
840
- "shapes":{
841
- "AccessDenied":{
842
- "type":"structure",
843
- "members":{
844
- "Message":{"shape":"string"}
845
- },
846
- "error":{"httpStatusCode":403},
847
- "exception":true
848
- },
849
- "ActiveTrustedSigners":{
850
- "type":"structure",
851
- "required":[
852
- "Enabled",
853
- "Quantity"
854
- ],
855
- "members":{
856
- "Enabled":{"shape":"boolean"},
857
- "Quantity":{"shape":"integer"},
858
- "Items":{"shape":"SignerList"}
859
- }
860
- },
861
- "AliasList":{
862
- "type":"list",
863
- "member":{
864
- "shape":"string",
865
- "locationName":"CNAME"
866
- }
867
- },
868
- "Aliases":{
869
- "type":"structure",
870
- "required":["Quantity"],
871
- "members":{
872
- "Quantity":{"shape":"integer"},
873
- "Items":{"shape":"AliasList"}
874
- }
875
- },
876
- "AllowedMethods":{
877
- "type":"structure",
878
- "required":[
879
- "Quantity",
880
- "Items"
881
- ],
882
- "members":{
883
- "Quantity":{"shape":"integer"},
884
- "Items":{"shape":"MethodsList"},
885
- "CachedMethods":{"shape":"CachedMethods"}
886
- }
887
- },
888
- "AwsAccountNumberList":{
889
- "type":"list",
890
- "member":{
891
- "shape":"string",
892
- "locationName":"AwsAccountNumber"
893
- }
894
- },
895
- "BatchTooLarge":{
896
- "type":"structure",
897
- "members":{
898
- "Message":{"shape":"string"}
899
- },
900
- "error":{"httpStatusCode":413},
901
- "exception":true
902
- },
903
- "CNAMEAlreadyExists":{
904
- "type":"structure",
905
- "members":{
906
- "Message":{"shape":"string"}
907
- },
908
- "error":{"httpStatusCode":409},
909
- "exception":true
910
- },
911
- "CacheBehavior":{
912
- "type":"structure",
913
- "required":[
914
- "PathPattern",
915
- "TargetOriginId",
916
- "ForwardedValues",
917
- "TrustedSigners",
918
- "ViewerProtocolPolicy",
919
- "MinTTL"
920
- ],
921
- "members":{
922
- "PathPattern":{"shape":"string"},
923
- "TargetOriginId":{"shape":"string"},
924
- "ForwardedValues":{"shape":"ForwardedValues"},
925
- "TrustedSigners":{"shape":"TrustedSigners"},
926
- "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
927
- "MinTTL":{"shape":"long"},
928
- "AllowedMethods":{"shape":"AllowedMethods"},
929
- "SmoothStreaming":{"shape":"boolean"},
930
- "DefaultTTL":{"shape":"long"},
931
- "MaxTTL":{"shape":"long"},
932
- "Compress":{"shape":"boolean"},
933
- "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
934
- "FieldLevelEncryptionId":{"shape":"string"}
935
- }
936
- },
937
- "CacheBehaviorList":{
938
- "type":"list",
939
- "member":{
940
- "shape":"CacheBehavior",
941
- "locationName":"CacheBehavior"
942
- }
943
- },
944
- "CacheBehaviors":{
945
- "type":"structure",
946
- "required":["Quantity"],
947
- "members":{
948
- "Quantity":{"shape":"integer"},
949
- "Items":{"shape":"CacheBehaviorList"}
950
- }
951
- },
952
- "CachedMethods":{
953
- "type":"structure",
954
- "required":[
955
- "Quantity",
956
- "Items"
957
- ],
958
- "members":{
959
- "Quantity":{"shape":"integer"},
960
- "Items":{"shape":"MethodsList"}
961
- }
962
- },
963
- "CannotChangeImmutablePublicKeyFields":{
964
- "type":"structure",
965
- "members":{
966
- "Message":{"shape":"string"}
967
- },
968
- "error":{"httpStatusCode":400},
969
- "exception":true
970
- },
971
- "CertificateSource":{
972
- "type":"string",
973
- "enum":[
974
- "cloudfront",
975
- "iam",
976
- "acm"
977
- ]
978
- },
979
- "CloudFrontOriginAccessIdentity":{
980
- "type":"structure",
981
- "required":[
982
- "Id",
983
- "S3CanonicalUserId"
984
- ],
985
- "members":{
986
- "Id":{"shape":"string"},
987
- "S3CanonicalUserId":{"shape":"string"},
988
- "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"}
989
- }
990
- },
991
- "CloudFrontOriginAccessIdentityAlreadyExists":{
992
- "type":"structure",
993
- "members":{
994
- "Message":{"shape":"string"}
995
- },
996
- "error":{"httpStatusCode":409},
997
- "exception":true
998
- },
999
- "CloudFrontOriginAccessIdentityConfig":{
1000
- "type":"structure",
1001
- "required":[
1002
- "CallerReference",
1003
- "Comment"
1004
- ],
1005
- "members":{
1006
- "CallerReference":{"shape":"string"},
1007
- "Comment":{"shape":"string"}
1008
- }
1009
- },
1010
- "CloudFrontOriginAccessIdentityInUse":{
1011
- "type":"structure",
1012
- "members":{
1013
- "Message":{"shape":"string"}
1014
- },
1015
- "error":{"httpStatusCode":409},
1016
- "exception":true
1017
- },
1018
- "CloudFrontOriginAccessIdentityList":{
1019
- "type":"structure",
1020
- "required":[
1021
- "Marker",
1022
- "MaxItems",
1023
- "IsTruncated",
1024
- "Quantity"
1025
- ],
1026
- "members":{
1027
- "Marker":{"shape":"string"},
1028
- "NextMarker":{"shape":"string"},
1029
- "MaxItems":{"shape":"integer"},
1030
- "IsTruncated":{"shape":"boolean"},
1031
- "Quantity":{"shape":"integer"},
1032
- "Items":{"shape":"CloudFrontOriginAccessIdentitySummaryList"}
1033
- }
1034
- },
1035
- "CloudFrontOriginAccessIdentitySummary":{
1036
- "type":"structure",
1037
- "required":[
1038
- "Id",
1039
- "S3CanonicalUserId",
1040
- "Comment"
1041
- ],
1042
- "members":{
1043
- "Id":{"shape":"string"},
1044
- "S3CanonicalUserId":{"shape":"string"},
1045
- "Comment":{"shape":"string"}
1046
- }
1047
- },
1048
- "CloudFrontOriginAccessIdentitySummaryList":{
1049
- "type":"list",
1050
- "member":{
1051
- "shape":"CloudFrontOriginAccessIdentitySummary",
1052
- "locationName":"CloudFrontOriginAccessIdentitySummary"
1053
- }
1054
- },
1055
- "ContentTypeProfile":{
1056
- "type":"structure",
1057
- "required":[
1058
- "Format",
1059
- "ContentType"
1060
- ],
1061
- "members":{
1062
- "Format":{"shape":"Format"},
1063
- "ProfileId":{"shape":"string"},
1064
- "ContentType":{"shape":"string"}
1065
- }
1066
- },
1067
- "ContentTypeProfileConfig":{
1068
- "type":"structure",
1069
- "required":["ForwardWhenContentTypeIsUnknown"],
1070
- "members":{
1071
- "ForwardWhenContentTypeIsUnknown":{"shape":"boolean"},
1072
- "ContentTypeProfiles":{"shape":"ContentTypeProfiles"}
1073
- }
1074
- },
1075
- "ContentTypeProfileList":{
1076
- "type":"list",
1077
- "member":{
1078
- "shape":"ContentTypeProfile",
1079
- "locationName":"ContentTypeProfile"
1080
- }
1081
- },
1082
- "ContentTypeProfiles":{
1083
- "type":"structure",
1084
- "required":["Quantity"],
1085
- "members":{
1086
- "Quantity":{"shape":"integer"},
1087
- "Items":{"shape":"ContentTypeProfileList"}
1088
- }
1089
- },
1090
- "CookieNameList":{
1091
- "type":"list",
1092
- "member":{
1093
- "shape":"string",
1094
- "locationName":"Name"
1095
- }
1096
- },
1097
- "CookieNames":{
1098
- "type":"structure",
1099
- "required":["Quantity"],
1100
- "members":{
1101
- "Quantity":{"shape":"integer"},
1102
- "Items":{"shape":"CookieNameList"}
1103
- }
1104
- },
1105
- "CookiePreference":{
1106
- "type":"structure",
1107
- "required":["Forward"],
1108
- "members":{
1109
- "Forward":{"shape":"ItemSelection"},
1110
- "WhitelistedNames":{"shape":"CookieNames"}
1111
- }
1112
- },
1113
- "CreateCloudFrontOriginAccessIdentityRequest":{
1114
- "type":"structure",
1115
- "required":["CloudFrontOriginAccessIdentityConfig"],
1116
- "members":{
1117
- "CloudFrontOriginAccessIdentityConfig":{
1118
- "shape":"CloudFrontOriginAccessIdentityConfig",
1119
- "locationName":"CloudFrontOriginAccessIdentityConfig",
1120
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1121
- }
1122
- },
1123
- "payload":"CloudFrontOriginAccessIdentityConfig"
1124
- },
1125
- "CreateCloudFrontOriginAccessIdentityResult":{
1126
- "type":"structure",
1127
- "members":{
1128
- "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
1129
- "Location":{
1130
- "shape":"string",
1131
- "location":"header",
1132
- "locationName":"Location"
1133
- },
1134
- "ETag":{
1135
- "shape":"string",
1136
- "location":"header",
1137
- "locationName":"ETag"
1138
- }
1139
- },
1140
- "payload":"CloudFrontOriginAccessIdentity"
1141
- },
1142
- "CreateDistributionRequest":{
1143
- "type":"structure",
1144
- "required":["DistributionConfig"],
1145
- "members":{
1146
- "DistributionConfig":{
1147
- "shape":"DistributionConfig",
1148
- "locationName":"DistributionConfig",
1149
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1150
- }
1151
- },
1152
- "payload":"DistributionConfig"
1153
- },
1154
- "CreateDistributionResult":{
1155
- "type":"structure",
1156
- "members":{
1157
- "Distribution":{"shape":"Distribution"},
1158
- "Location":{
1159
- "shape":"string",
1160
- "location":"header",
1161
- "locationName":"Location"
1162
- },
1163
- "ETag":{
1164
- "shape":"string",
1165
- "location":"header",
1166
- "locationName":"ETag"
1167
- }
1168
- },
1169
- "payload":"Distribution"
1170
- },
1171
- "CreateDistributionWithTagsRequest":{
1172
- "type":"structure",
1173
- "required":["DistributionConfigWithTags"],
1174
- "members":{
1175
- "DistributionConfigWithTags":{
1176
- "shape":"DistributionConfigWithTags",
1177
- "locationName":"DistributionConfigWithTags",
1178
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1179
- }
1180
- },
1181
- "payload":"DistributionConfigWithTags"
1182
- },
1183
- "CreateDistributionWithTagsResult":{
1184
- "type":"structure",
1185
- "members":{
1186
- "Distribution":{"shape":"Distribution"},
1187
- "Location":{
1188
- "shape":"string",
1189
- "location":"header",
1190
- "locationName":"Location"
1191
- },
1192
- "ETag":{
1193
- "shape":"string",
1194
- "location":"header",
1195
- "locationName":"ETag"
1196
- }
1197
- },
1198
- "payload":"Distribution"
1199
- },
1200
- "CreateFieldLevelEncryptionConfigRequest":{
1201
- "type":"structure",
1202
- "required":["FieldLevelEncryptionConfig"],
1203
- "members":{
1204
- "FieldLevelEncryptionConfig":{
1205
- "shape":"FieldLevelEncryptionConfig",
1206
- "locationName":"FieldLevelEncryptionConfig",
1207
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1208
- }
1209
- },
1210
- "payload":"FieldLevelEncryptionConfig"
1211
- },
1212
- "CreateFieldLevelEncryptionConfigResult":{
1213
- "type":"structure",
1214
- "members":{
1215
- "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
1216
- "Location":{
1217
- "shape":"string",
1218
- "location":"header",
1219
- "locationName":"Location"
1220
- },
1221
- "ETag":{
1222
- "shape":"string",
1223
- "location":"header",
1224
- "locationName":"ETag"
1225
- }
1226
- },
1227
- "payload":"FieldLevelEncryption"
1228
- },
1229
- "CreateFieldLevelEncryptionProfileRequest":{
1230
- "type":"structure",
1231
- "required":["FieldLevelEncryptionProfileConfig"],
1232
- "members":{
1233
- "FieldLevelEncryptionProfileConfig":{
1234
- "shape":"FieldLevelEncryptionProfileConfig",
1235
- "locationName":"FieldLevelEncryptionProfileConfig",
1236
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1237
- }
1238
- },
1239
- "payload":"FieldLevelEncryptionProfileConfig"
1240
- },
1241
- "CreateFieldLevelEncryptionProfileResult":{
1242
- "type":"structure",
1243
- "members":{
1244
- "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
1245
- "Location":{
1246
- "shape":"string",
1247
- "location":"header",
1248
- "locationName":"Location"
1249
- },
1250
- "ETag":{
1251
- "shape":"string",
1252
- "location":"header",
1253
- "locationName":"ETag"
1254
- }
1255
- },
1256
- "payload":"FieldLevelEncryptionProfile"
1257
- },
1258
- "CreateInvalidationRequest":{
1259
- "type":"structure",
1260
- "required":[
1261
- "DistributionId",
1262
- "InvalidationBatch"
1263
- ],
1264
- "members":{
1265
- "DistributionId":{
1266
- "shape":"string",
1267
- "location":"uri",
1268
- "locationName":"DistributionId"
1269
- },
1270
- "InvalidationBatch":{
1271
- "shape":"InvalidationBatch",
1272
- "locationName":"InvalidationBatch",
1273
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1274
- }
1275
- },
1276
- "payload":"InvalidationBatch"
1277
- },
1278
- "CreateInvalidationResult":{
1279
- "type":"structure",
1280
- "members":{
1281
- "Location":{
1282
- "shape":"string",
1283
- "location":"header",
1284
- "locationName":"Location"
1285
- },
1286
- "Invalidation":{"shape":"Invalidation"}
1287
- },
1288
- "payload":"Invalidation"
1289
- },
1290
- "CreatePublicKeyRequest":{
1291
- "type":"structure",
1292
- "required":["PublicKeyConfig"],
1293
- "members":{
1294
- "PublicKeyConfig":{
1295
- "shape":"PublicKeyConfig",
1296
- "locationName":"PublicKeyConfig",
1297
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1298
- }
1299
- },
1300
- "payload":"PublicKeyConfig"
1301
- },
1302
- "CreatePublicKeyResult":{
1303
- "type":"structure",
1304
- "members":{
1305
- "PublicKey":{"shape":"PublicKey"},
1306
- "Location":{
1307
- "shape":"string",
1308
- "location":"header",
1309
- "locationName":"Location"
1310
- },
1311
- "ETag":{
1312
- "shape":"string",
1313
- "location":"header",
1314
- "locationName":"ETag"
1315
- }
1316
- },
1317
- "payload":"PublicKey"
1318
- },
1319
- "CreateStreamingDistributionRequest":{
1320
- "type":"structure",
1321
- "required":["StreamingDistributionConfig"],
1322
- "members":{
1323
- "StreamingDistributionConfig":{
1324
- "shape":"StreamingDistributionConfig",
1325
- "locationName":"StreamingDistributionConfig",
1326
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1327
- }
1328
- },
1329
- "payload":"StreamingDistributionConfig"
1330
- },
1331
- "CreateStreamingDistributionResult":{
1332
- "type":"structure",
1333
- "members":{
1334
- "StreamingDistribution":{"shape":"StreamingDistribution"},
1335
- "Location":{
1336
- "shape":"string",
1337
- "location":"header",
1338
- "locationName":"Location"
1339
- },
1340
- "ETag":{
1341
- "shape":"string",
1342
- "location":"header",
1343
- "locationName":"ETag"
1344
- }
1345
- },
1346
- "payload":"StreamingDistribution"
1347
- },
1348
- "CreateStreamingDistributionWithTagsRequest":{
1349
- "type":"structure",
1350
- "required":["StreamingDistributionConfigWithTags"],
1351
- "members":{
1352
- "StreamingDistributionConfigWithTags":{
1353
- "shape":"StreamingDistributionConfigWithTags",
1354
- "locationName":"StreamingDistributionConfigWithTags",
1355
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
1356
- }
1357
- },
1358
- "payload":"StreamingDistributionConfigWithTags"
1359
- },
1360
- "CreateStreamingDistributionWithTagsResult":{
1361
- "type":"structure",
1362
- "members":{
1363
- "StreamingDistribution":{"shape":"StreamingDistribution"},
1364
- "Location":{
1365
- "shape":"string",
1366
- "location":"header",
1367
- "locationName":"Location"
1368
- },
1369
- "ETag":{
1370
- "shape":"string",
1371
- "location":"header",
1372
- "locationName":"ETag"
1373
- }
1374
- },
1375
- "payload":"StreamingDistribution"
1376
- },
1377
- "CustomErrorResponse":{
1378
- "type":"structure",
1379
- "required":["ErrorCode"],
1380
- "members":{
1381
- "ErrorCode":{"shape":"integer"},
1382
- "ResponsePagePath":{"shape":"string"},
1383
- "ResponseCode":{"shape":"string"},
1384
- "ErrorCachingMinTTL":{"shape":"long"}
1385
- }
1386
- },
1387
- "CustomErrorResponseList":{
1388
- "type":"list",
1389
- "member":{
1390
- "shape":"CustomErrorResponse",
1391
- "locationName":"CustomErrorResponse"
1392
- }
1393
- },
1394
- "CustomErrorResponses":{
1395
- "type":"structure",
1396
- "required":["Quantity"],
1397
- "members":{
1398
- "Quantity":{"shape":"integer"},
1399
- "Items":{"shape":"CustomErrorResponseList"}
1400
- }
1401
- },
1402
- "CustomHeaders":{
1403
- "type":"structure",
1404
- "required":["Quantity"],
1405
- "members":{
1406
- "Quantity":{"shape":"integer"},
1407
- "Items":{"shape":"OriginCustomHeadersList"}
1408
- }
1409
- },
1410
- "CustomOriginConfig":{
1411
- "type":"structure",
1412
- "required":[
1413
- "HTTPPort",
1414
- "HTTPSPort",
1415
- "OriginProtocolPolicy"
1416
- ],
1417
- "members":{
1418
- "HTTPPort":{"shape":"integer"},
1419
- "HTTPSPort":{"shape":"integer"},
1420
- "OriginProtocolPolicy":{"shape":"OriginProtocolPolicy"},
1421
- "OriginSslProtocols":{"shape":"OriginSslProtocols"},
1422
- "OriginReadTimeout":{"shape":"integer"},
1423
- "OriginKeepaliveTimeout":{"shape":"integer"}
1424
- }
1425
- },
1426
- "DefaultCacheBehavior":{
1427
- "type":"structure",
1428
- "required":[
1429
- "TargetOriginId",
1430
- "ForwardedValues",
1431
- "TrustedSigners",
1432
- "ViewerProtocolPolicy",
1433
- "MinTTL"
1434
- ],
1435
- "members":{
1436
- "TargetOriginId":{"shape":"string"},
1437
- "ForwardedValues":{"shape":"ForwardedValues"},
1438
- "TrustedSigners":{"shape":"TrustedSigners"},
1439
- "ViewerProtocolPolicy":{"shape":"ViewerProtocolPolicy"},
1440
- "MinTTL":{"shape":"long"},
1441
- "AllowedMethods":{"shape":"AllowedMethods"},
1442
- "SmoothStreaming":{"shape":"boolean"},
1443
- "DefaultTTL":{"shape":"long"},
1444
- "MaxTTL":{"shape":"long"},
1445
- "Compress":{"shape":"boolean"},
1446
- "LambdaFunctionAssociations":{"shape":"LambdaFunctionAssociations"},
1447
- "FieldLevelEncryptionId":{"shape":"string"}
1448
- }
1449
- },
1450
- "DeleteCloudFrontOriginAccessIdentityRequest":{
1451
- "type":"structure",
1452
- "required":["Id"],
1453
- "members":{
1454
- "Id":{
1455
- "shape":"string",
1456
- "location":"uri",
1457
- "locationName":"Id"
1458
- },
1459
- "IfMatch":{
1460
- "shape":"string",
1461
- "location":"header",
1462
- "locationName":"If-Match"
1463
- }
1464
- }
1465
- },
1466
- "DeleteDistributionRequest":{
1467
- "type":"structure",
1468
- "required":["Id"],
1469
- "members":{
1470
- "Id":{
1471
- "shape":"string",
1472
- "location":"uri",
1473
- "locationName":"Id"
1474
- },
1475
- "IfMatch":{
1476
- "shape":"string",
1477
- "location":"header",
1478
- "locationName":"If-Match"
1479
- }
1480
- }
1481
- },
1482
- "DeleteFieldLevelEncryptionConfigRequest":{
1483
- "type":"structure",
1484
- "required":["Id"],
1485
- "members":{
1486
- "Id":{
1487
- "shape":"string",
1488
- "location":"uri",
1489
- "locationName":"Id"
1490
- },
1491
- "IfMatch":{
1492
- "shape":"string",
1493
- "location":"header",
1494
- "locationName":"If-Match"
1495
- }
1496
- }
1497
- },
1498
- "DeleteFieldLevelEncryptionProfileRequest":{
1499
- "type":"structure",
1500
- "required":["Id"],
1501
- "members":{
1502
- "Id":{
1503
- "shape":"string",
1504
- "location":"uri",
1505
- "locationName":"Id"
1506
- },
1507
- "IfMatch":{
1508
- "shape":"string",
1509
- "location":"header",
1510
- "locationName":"If-Match"
1511
- }
1512
- }
1513
- },
1514
- "DeletePublicKeyRequest":{
1515
- "type":"structure",
1516
- "required":["Id"],
1517
- "members":{
1518
- "Id":{
1519
- "shape":"string",
1520
- "location":"uri",
1521
- "locationName":"Id"
1522
- },
1523
- "IfMatch":{
1524
- "shape":"string",
1525
- "location":"header",
1526
- "locationName":"If-Match"
1527
- }
1528
- }
1529
- },
1530
- "DeleteStreamingDistributionRequest":{
1531
- "type":"structure",
1532
- "required":["Id"],
1533
- "members":{
1534
- "Id":{
1535
- "shape":"string",
1536
- "location":"uri",
1537
- "locationName":"Id"
1538
- },
1539
- "IfMatch":{
1540
- "shape":"string",
1541
- "location":"header",
1542
- "locationName":"If-Match"
1543
- }
1544
- }
1545
- },
1546
- "Distribution":{
1547
- "type":"structure",
1548
- "required":[
1549
- "Id",
1550
- "ARN",
1551
- "Status",
1552
- "LastModifiedTime",
1553
- "InProgressInvalidationBatches",
1554
- "DomainName",
1555
- "ActiveTrustedSigners",
1556
- "DistributionConfig"
1557
- ],
1558
- "members":{
1559
- "Id":{"shape":"string"},
1560
- "ARN":{"shape":"string"},
1561
- "Status":{"shape":"string"},
1562
- "LastModifiedTime":{"shape":"timestamp"},
1563
- "InProgressInvalidationBatches":{"shape":"integer"},
1564
- "DomainName":{"shape":"string"},
1565
- "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
1566
- "DistributionConfig":{"shape":"DistributionConfig"}
1567
- }
1568
- },
1569
- "DistributionAlreadyExists":{
1570
- "type":"structure",
1571
- "members":{
1572
- "Message":{"shape":"string"}
1573
- },
1574
- "error":{"httpStatusCode":409},
1575
- "exception":true
1576
- },
1577
- "DistributionConfig":{
1578
- "type":"structure",
1579
- "required":[
1580
- "CallerReference",
1581
- "Origins",
1582
- "DefaultCacheBehavior",
1583
- "Comment",
1584
- "Enabled"
1585
- ],
1586
- "members":{
1587
- "CallerReference":{"shape":"string"},
1588
- "Aliases":{"shape":"Aliases"},
1589
- "DefaultRootObject":{"shape":"string"},
1590
- "Origins":{"shape":"Origins"},
1591
- "OriginGroups":{"shape":"OriginGroups"},
1592
- "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
1593
- "CacheBehaviors":{"shape":"CacheBehaviors"},
1594
- "CustomErrorResponses":{"shape":"CustomErrorResponses"},
1595
- "Comment":{"shape":"string"},
1596
- "Logging":{"shape":"LoggingConfig"},
1597
- "PriceClass":{"shape":"PriceClass"},
1598
- "Enabled":{"shape":"boolean"},
1599
- "ViewerCertificate":{"shape":"ViewerCertificate"},
1600
- "Restrictions":{"shape":"Restrictions"},
1601
- "WebACLId":{"shape":"string"},
1602
- "HttpVersion":{"shape":"HttpVersion"},
1603
- "IsIPV6Enabled":{"shape":"boolean"}
1604
- }
1605
- },
1606
- "DistributionConfigWithTags":{
1607
- "type":"structure",
1608
- "required":[
1609
- "DistributionConfig",
1610
- "Tags"
1611
- ],
1612
- "members":{
1613
- "DistributionConfig":{"shape":"DistributionConfig"},
1614
- "Tags":{"shape":"Tags"}
1615
- }
1616
- },
1617
- "DistributionList":{
1618
- "type":"structure",
1619
- "required":[
1620
- "Marker",
1621
- "MaxItems",
1622
- "IsTruncated",
1623
- "Quantity"
1624
- ],
1625
- "members":{
1626
- "Marker":{"shape":"string"},
1627
- "NextMarker":{"shape":"string"},
1628
- "MaxItems":{"shape":"integer"},
1629
- "IsTruncated":{"shape":"boolean"},
1630
- "Quantity":{"shape":"integer"},
1631
- "Items":{"shape":"DistributionSummaryList"}
1632
- }
1633
- },
1634
- "DistributionNotDisabled":{
1635
- "type":"structure",
1636
- "members":{
1637
- "Message":{"shape":"string"}
1638
- },
1639
- "error":{"httpStatusCode":409},
1640
- "exception":true
1641
- },
1642
- "DistributionSummary":{
1643
- "type":"structure",
1644
- "required":[
1645
- "Id",
1646
- "ARN",
1647
- "Status",
1648
- "LastModifiedTime",
1649
- "DomainName",
1650
- "Aliases",
1651
- "Origins",
1652
- "DefaultCacheBehavior",
1653
- "CacheBehaviors",
1654
- "CustomErrorResponses",
1655
- "Comment",
1656
- "PriceClass",
1657
- "Enabled",
1658
- "ViewerCertificate",
1659
- "Restrictions",
1660
- "WebACLId",
1661
- "HttpVersion",
1662
- "IsIPV6Enabled"
1663
- ],
1664
- "members":{
1665
- "Id":{"shape":"string"},
1666
- "ARN":{"shape":"string"},
1667
- "Status":{"shape":"string"},
1668
- "LastModifiedTime":{"shape":"timestamp"},
1669
- "DomainName":{"shape":"string"},
1670
- "Aliases":{"shape":"Aliases"},
1671
- "Origins":{"shape":"Origins"},
1672
- "OriginGroups":{"shape":"OriginGroups"},
1673
- "DefaultCacheBehavior":{"shape":"DefaultCacheBehavior"},
1674
- "CacheBehaviors":{"shape":"CacheBehaviors"},
1675
- "CustomErrorResponses":{"shape":"CustomErrorResponses"},
1676
- "Comment":{"shape":"string"},
1677
- "PriceClass":{"shape":"PriceClass"},
1678
- "Enabled":{"shape":"boolean"},
1679
- "ViewerCertificate":{"shape":"ViewerCertificate"},
1680
- "Restrictions":{"shape":"Restrictions"},
1681
- "WebACLId":{"shape":"string"},
1682
- "HttpVersion":{"shape":"HttpVersion"},
1683
- "IsIPV6Enabled":{"shape":"boolean"}
1684
- }
1685
- },
1686
- "DistributionSummaryList":{
1687
- "type":"list",
1688
- "member":{
1689
- "shape":"DistributionSummary",
1690
- "locationName":"DistributionSummary"
1691
- }
1692
- },
1693
- "EncryptionEntities":{
1694
- "type":"structure",
1695
- "required":["Quantity"],
1696
- "members":{
1697
- "Quantity":{"shape":"integer"},
1698
- "Items":{"shape":"EncryptionEntityList"}
1699
- }
1700
- },
1701
- "EncryptionEntity":{
1702
- "type":"structure",
1703
- "required":[
1704
- "PublicKeyId",
1705
- "ProviderId",
1706
- "FieldPatterns"
1707
- ],
1708
- "members":{
1709
- "PublicKeyId":{"shape":"string"},
1710
- "ProviderId":{"shape":"string"},
1711
- "FieldPatterns":{"shape":"FieldPatterns"}
1712
- }
1713
- },
1714
- "EncryptionEntityList":{
1715
- "type":"list",
1716
- "member":{
1717
- "shape":"EncryptionEntity",
1718
- "locationName":"EncryptionEntity"
1719
- }
1720
- },
1721
- "EventType":{
1722
- "type":"string",
1723
- "enum":[
1724
- "viewer-request",
1725
- "viewer-response",
1726
- "origin-request",
1727
- "origin-response"
1728
- ]
1729
- },
1730
- "FieldLevelEncryption":{
1731
- "type":"structure",
1732
- "required":[
1733
- "Id",
1734
- "LastModifiedTime",
1735
- "FieldLevelEncryptionConfig"
1736
- ],
1737
- "members":{
1738
- "Id":{"shape":"string"},
1739
- "LastModifiedTime":{"shape":"timestamp"},
1740
- "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"}
1741
- }
1742
- },
1743
- "FieldLevelEncryptionConfig":{
1744
- "type":"structure",
1745
- "required":["CallerReference"],
1746
- "members":{
1747
- "CallerReference":{"shape":"string"},
1748
- "Comment":{"shape":"string"},
1749
- "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
1750
- "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
1751
- }
1752
- },
1753
- "FieldLevelEncryptionConfigAlreadyExists":{
1754
- "type":"structure",
1755
- "members":{
1756
- "Message":{"shape":"string"}
1757
- },
1758
- "error":{"httpStatusCode":409},
1759
- "exception":true
1760
- },
1761
- "FieldLevelEncryptionConfigInUse":{
1762
- "type":"structure",
1763
- "members":{
1764
- "Message":{"shape":"string"}
1765
- },
1766
- "error":{"httpStatusCode":409},
1767
- "exception":true
1768
- },
1769
- "FieldLevelEncryptionList":{
1770
- "type":"structure",
1771
- "required":[
1772
- "MaxItems",
1773
- "Quantity"
1774
- ],
1775
- "members":{
1776
- "NextMarker":{"shape":"string"},
1777
- "MaxItems":{"shape":"integer"},
1778
- "Quantity":{"shape":"integer"},
1779
- "Items":{"shape":"FieldLevelEncryptionSummaryList"}
1780
- }
1781
- },
1782
- "FieldLevelEncryptionProfile":{
1783
- "type":"structure",
1784
- "required":[
1785
- "Id",
1786
- "LastModifiedTime",
1787
- "FieldLevelEncryptionProfileConfig"
1788
- ],
1789
- "members":{
1790
- "Id":{"shape":"string"},
1791
- "LastModifiedTime":{"shape":"timestamp"},
1792
- "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"}
1793
- }
1794
- },
1795
- "FieldLevelEncryptionProfileAlreadyExists":{
1796
- "type":"structure",
1797
- "members":{
1798
- "Message":{"shape":"string"}
1799
- },
1800
- "error":{"httpStatusCode":409},
1801
- "exception":true
1802
- },
1803
- "FieldLevelEncryptionProfileConfig":{
1804
- "type":"structure",
1805
- "required":[
1806
- "Name",
1807
- "CallerReference",
1808
- "EncryptionEntities"
1809
- ],
1810
- "members":{
1811
- "Name":{"shape":"string"},
1812
- "CallerReference":{"shape":"string"},
1813
- "Comment":{"shape":"string"},
1814
- "EncryptionEntities":{"shape":"EncryptionEntities"}
1815
- }
1816
- },
1817
- "FieldLevelEncryptionProfileInUse":{
1818
- "type":"structure",
1819
- "members":{
1820
- "Message":{"shape":"string"}
1821
- },
1822
- "error":{"httpStatusCode":409},
1823
- "exception":true
1824
- },
1825
- "FieldLevelEncryptionProfileList":{
1826
- "type":"structure",
1827
- "required":[
1828
- "MaxItems",
1829
- "Quantity"
1830
- ],
1831
- "members":{
1832
- "NextMarker":{"shape":"string"},
1833
- "MaxItems":{"shape":"integer"},
1834
- "Quantity":{"shape":"integer"},
1835
- "Items":{"shape":"FieldLevelEncryptionProfileSummaryList"}
1836
- }
1837
- },
1838
- "FieldLevelEncryptionProfileSizeExceeded":{
1839
- "type":"structure",
1840
- "members":{
1841
- "Message":{"shape":"string"}
1842
- },
1843
- "error":{"httpStatusCode":400},
1844
- "exception":true
1845
- },
1846
- "FieldLevelEncryptionProfileSummary":{
1847
- "type":"structure",
1848
- "required":[
1849
- "Id",
1850
- "LastModifiedTime",
1851
- "Name",
1852
- "EncryptionEntities"
1853
- ],
1854
- "members":{
1855
- "Id":{"shape":"string"},
1856
- "LastModifiedTime":{"shape":"timestamp"},
1857
- "Name":{"shape":"string"},
1858
- "EncryptionEntities":{"shape":"EncryptionEntities"},
1859
- "Comment":{"shape":"string"}
1860
- }
1861
- },
1862
- "FieldLevelEncryptionProfileSummaryList":{
1863
- "type":"list",
1864
- "member":{
1865
- "shape":"FieldLevelEncryptionProfileSummary",
1866
- "locationName":"FieldLevelEncryptionProfileSummary"
1867
- }
1868
- },
1869
- "FieldLevelEncryptionSummary":{
1870
- "type":"structure",
1871
- "required":[
1872
- "Id",
1873
- "LastModifiedTime"
1874
- ],
1875
- "members":{
1876
- "Id":{"shape":"string"},
1877
- "LastModifiedTime":{"shape":"timestamp"},
1878
- "Comment":{"shape":"string"},
1879
- "QueryArgProfileConfig":{"shape":"QueryArgProfileConfig"},
1880
- "ContentTypeProfileConfig":{"shape":"ContentTypeProfileConfig"}
1881
- }
1882
- },
1883
- "FieldLevelEncryptionSummaryList":{
1884
- "type":"list",
1885
- "member":{
1886
- "shape":"FieldLevelEncryptionSummary",
1887
- "locationName":"FieldLevelEncryptionSummary"
1888
- }
1889
- },
1890
- "FieldPatternList":{
1891
- "type":"list",
1892
- "member":{
1893
- "shape":"string",
1894
- "locationName":"FieldPattern"
1895
- }
1896
- },
1897
- "FieldPatterns":{
1898
- "type":"structure",
1899
- "required":["Quantity"],
1900
- "members":{
1901
- "Quantity":{"shape":"integer"},
1902
- "Items":{"shape":"FieldPatternList"}
1903
- }
1904
- },
1905
- "Format":{
1906
- "type":"string",
1907
- "enum":["URLEncoded"]
1908
- },
1909
- "ForwardedValues":{
1910
- "type":"structure",
1911
- "required":[
1912
- "QueryString",
1913
- "Cookies"
1914
- ],
1915
- "members":{
1916
- "QueryString":{"shape":"boolean"},
1917
- "Cookies":{"shape":"CookiePreference"},
1918
- "Headers":{"shape":"Headers"},
1919
- "QueryStringCacheKeys":{"shape":"QueryStringCacheKeys"}
1920
- }
1921
- },
1922
- "GeoRestriction":{
1923
- "type":"structure",
1924
- "required":[
1925
- "RestrictionType",
1926
- "Quantity"
1927
- ],
1928
- "members":{
1929
- "RestrictionType":{"shape":"GeoRestrictionType"},
1930
- "Quantity":{"shape":"integer"},
1931
- "Items":{"shape":"LocationList"}
1932
- }
1933
- },
1934
- "GeoRestrictionType":{
1935
- "type":"string",
1936
- "enum":[
1937
- "blacklist",
1938
- "whitelist",
1939
- "none"
1940
- ]
1941
- },
1942
- "GetCloudFrontOriginAccessIdentityConfigRequest":{
1943
- "type":"structure",
1944
- "required":["Id"],
1945
- "members":{
1946
- "Id":{
1947
- "shape":"string",
1948
- "location":"uri",
1949
- "locationName":"Id"
1950
- }
1951
- }
1952
- },
1953
- "GetCloudFrontOriginAccessIdentityConfigResult":{
1954
- "type":"structure",
1955
- "members":{
1956
- "CloudFrontOriginAccessIdentityConfig":{"shape":"CloudFrontOriginAccessIdentityConfig"},
1957
- "ETag":{
1958
- "shape":"string",
1959
- "location":"header",
1960
- "locationName":"ETag"
1961
- }
1962
- },
1963
- "payload":"CloudFrontOriginAccessIdentityConfig"
1964
- },
1965
- "GetCloudFrontOriginAccessIdentityRequest":{
1966
- "type":"structure",
1967
- "required":["Id"],
1968
- "members":{
1969
- "Id":{
1970
- "shape":"string",
1971
- "location":"uri",
1972
- "locationName":"Id"
1973
- }
1974
- }
1975
- },
1976
- "GetCloudFrontOriginAccessIdentityResult":{
1977
- "type":"structure",
1978
- "members":{
1979
- "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
1980
- "ETag":{
1981
- "shape":"string",
1982
- "location":"header",
1983
- "locationName":"ETag"
1984
- }
1985
- },
1986
- "payload":"CloudFrontOriginAccessIdentity"
1987
- },
1988
- "GetDistributionConfigRequest":{
1989
- "type":"structure",
1990
- "required":["Id"],
1991
- "members":{
1992
- "Id":{
1993
- "shape":"string",
1994
- "location":"uri",
1995
- "locationName":"Id"
1996
- }
1997
- }
1998
- },
1999
- "GetDistributionConfigResult":{
2000
- "type":"structure",
2001
- "members":{
2002
- "DistributionConfig":{"shape":"DistributionConfig"},
2003
- "ETag":{
2004
- "shape":"string",
2005
- "location":"header",
2006
- "locationName":"ETag"
2007
- }
2008
- },
2009
- "payload":"DistributionConfig"
2010
- },
2011
- "GetDistributionRequest":{
2012
- "type":"structure",
2013
- "required":["Id"],
2014
- "members":{
2015
- "Id":{
2016
- "shape":"string",
2017
- "location":"uri",
2018
- "locationName":"Id"
2019
- }
2020
- }
2021
- },
2022
- "GetDistributionResult":{
2023
- "type":"structure",
2024
- "members":{
2025
- "Distribution":{"shape":"Distribution"},
2026
- "ETag":{
2027
- "shape":"string",
2028
- "location":"header",
2029
- "locationName":"ETag"
2030
- }
2031
- },
2032
- "payload":"Distribution"
2033
- },
2034
- "GetFieldLevelEncryptionConfigRequest":{
2035
- "type":"structure",
2036
- "required":["Id"],
2037
- "members":{
2038
- "Id":{
2039
- "shape":"string",
2040
- "location":"uri",
2041
- "locationName":"Id"
2042
- }
2043
- }
2044
- },
2045
- "GetFieldLevelEncryptionConfigResult":{
2046
- "type":"structure",
2047
- "members":{
2048
- "FieldLevelEncryptionConfig":{"shape":"FieldLevelEncryptionConfig"},
2049
- "ETag":{
2050
- "shape":"string",
2051
- "location":"header",
2052
- "locationName":"ETag"
2053
- }
2054
- },
2055
- "payload":"FieldLevelEncryptionConfig"
2056
- },
2057
- "GetFieldLevelEncryptionProfileConfigRequest":{
2058
- "type":"structure",
2059
- "required":["Id"],
2060
- "members":{
2061
- "Id":{
2062
- "shape":"string",
2063
- "location":"uri",
2064
- "locationName":"Id"
2065
- }
2066
- }
2067
- },
2068
- "GetFieldLevelEncryptionProfileConfigResult":{
2069
- "type":"structure",
2070
- "members":{
2071
- "FieldLevelEncryptionProfileConfig":{"shape":"FieldLevelEncryptionProfileConfig"},
2072
- "ETag":{
2073
- "shape":"string",
2074
- "location":"header",
2075
- "locationName":"ETag"
2076
- }
2077
- },
2078
- "payload":"FieldLevelEncryptionProfileConfig"
2079
- },
2080
- "GetFieldLevelEncryptionProfileRequest":{
2081
- "type":"structure",
2082
- "required":["Id"],
2083
- "members":{
2084
- "Id":{
2085
- "shape":"string",
2086
- "location":"uri",
2087
- "locationName":"Id"
2088
- }
2089
- }
2090
- },
2091
- "GetFieldLevelEncryptionProfileResult":{
2092
- "type":"structure",
2093
- "members":{
2094
- "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
2095
- "ETag":{
2096
- "shape":"string",
2097
- "location":"header",
2098
- "locationName":"ETag"
2099
- }
2100
- },
2101
- "payload":"FieldLevelEncryptionProfile"
2102
- },
2103
- "GetFieldLevelEncryptionRequest":{
2104
- "type":"structure",
2105
- "required":["Id"],
2106
- "members":{
2107
- "Id":{
2108
- "shape":"string",
2109
- "location":"uri",
2110
- "locationName":"Id"
2111
- }
2112
- }
2113
- },
2114
- "GetFieldLevelEncryptionResult":{
2115
- "type":"structure",
2116
- "members":{
2117
- "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
2118
- "ETag":{
2119
- "shape":"string",
2120
- "location":"header",
2121
- "locationName":"ETag"
2122
- }
2123
- },
2124
- "payload":"FieldLevelEncryption"
2125
- },
2126
- "GetInvalidationRequest":{
2127
- "type":"structure",
2128
- "required":[
2129
- "DistributionId",
2130
- "Id"
2131
- ],
2132
- "members":{
2133
- "DistributionId":{
2134
- "shape":"string",
2135
- "location":"uri",
2136
- "locationName":"DistributionId"
2137
- },
2138
- "Id":{
2139
- "shape":"string",
2140
- "location":"uri",
2141
- "locationName":"Id"
2142
- }
2143
- }
2144
- },
2145
- "GetInvalidationResult":{
2146
- "type":"structure",
2147
- "members":{
2148
- "Invalidation":{"shape":"Invalidation"}
2149
- },
2150
- "payload":"Invalidation"
2151
- },
2152
- "GetPublicKeyConfigRequest":{
2153
- "type":"structure",
2154
- "required":["Id"],
2155
- "members":{
2156
- "Id":{
2157
- "shape":"string",
2158
- "location":"uri",
2159
- "locationName":"Id"
2160
- }
2161
- }
2162
- },
2163
- "GetPublicKeyConfigResult":{
2164
- "type":"structure",
2165
- "members":{
2166
- "PublicKeyConfig":{"shape":"PublicKeyConfig"},
2167
- "ETag":{
2168
- "shape":"string",
2169
- "location":"header",
2170
- "locationName":"ETag"
2171
- }
2172
- },
2173
- "payload":"PublicKeyConfig"
2174
- },
2175
- "GetPublicKeyRequest":{
2176
- "type":"structure",
2177
- "required":["Id"],
2178
- "members":{
2179
- "Id":{
2180
- "shape":"string",
2181
- "location":"uri",
2182
- "locationName":"Id"
2183
- }
2184
- }
2185
- },
2186
- "GetPublicKeyResult":{
2187
- "type":"structure",
2188
- "members":{
2189
- "PublicKey":{"shape":"PublicKey"},
2190
- "ETag":{
2191
- "shape":"string",
2192
- "location":"header",
2193
- "locationName":"ETag"
2194
- }
2195
- },
2196
- "payload":"PublicKey"
2197
- },
2198
- "GetStreamingDistributionConfigRequest":{
2199
- "type":"structure",
2200
- "required":["Id"],
2201
- "members":{
2202
- "Id":{
2203
- "shape":"string",
2204
- "location":"uri",
2205
- "locationName":"Id"
2206
- }
2207
- }
2208
- },
2209
- "GetStreamingDistributionConfigResult":{
2210
- "type":"structure",
2211
- "members":{
2212
- "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
2213
- "ETag":{
2214
- "shape":"string",
2215
- "location":"header",
2216
- "locationName":"ETag"
2217
- }
2218
- },
2219
- "payload":"StreamingDistributionConfig"
2220
- },
2221
- "GetStreamingDistributionRequest":{
2222
- "type":"structure",
2223
- "required":["Id"],
2224
- "members":{
2225
- "Id":{
2226
- "shape":"string",
2227
- "location":"uri",
2228
- "locationName":"Id"
2229
- }
2230
- }
2231
- },
2232
- "GetStreamingDistributionResult":{
2233
- "type":"structure",
2234
- "members":{
2235
- "StreamingDistribution":{"shape":"StreamingDistribution"},
2236
- "ETag":{
2237
- "shape":"string",
2238
- "location":"header",
2239
- "locationName":"ETag"
2240
- }
2241
- },
2242
- "payload":"StreamingDistribution"
2243
- },
2244
- "HeaderList":{
2245
- "type":"list",
2246
- "member":{
2247
- "shape":"string",
2248
- "locationName":"Name"
2249
- }
2250
- },
2251
- "Headers":{
2252
- "type":"structure",
2253
- "required":["Quantity"],
2254
- "members":{
2255
- "Quantity":{"shape":"integer"},
2256
- "Items":{"shape":"HeaderList"}
2257
- }
2258
- },
2259
- "HttpVersion":{
2260
- "type":"string",
2261
- "enum":[
2262
- "http1.1",
2263
- "http2"
2264
- ]
2265
- },
2266
- "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior":{
2267
- "type":"structure",
2268
- "members":{
2269
- "Message":{"shape":"string"}
2270
- },
2271
- "error":{"httpStatusCode":400},
2272
- "exception":true
2273
- },
2274
- "IllegalUpdate":{
2275
- "type":"structure",
2276
- "members":{
2277
- "Message":{"shape":"string"}
2278
- },
2279
- "error":{"httpStatusCode":400},
2280
- "exception":true
2281
- },
2282
- "InconsistentQuantities":{
2283
- "type":"structure",
2284
- "members":{
2285
- "Message":{"shape":"string"}
2286
- },
2287
- "error":{"httpStatusCode":400},
2288
- "exception":true
2289
- },
2290
- "InvalidArgument":{
2291
- "type":"structure",
2292
- "members":{
2293
- "Message":{"shape":"string"}
2294
- },
2295
- "error":{"httpStatusCode":400},
2296
- "exception":true
2297
- },
2298
- "InvalidDefaultRootObject":{
2299
- "type":"structure",
2300
- "members":{
2301
- "Message":{"shape":"string"}
2302
- },
2303
- "error":{"httpStatusCode":400},
2304
- "exception":true
2305
- },
2306
- "InvalidErrorCode":{
2307
- "type":"structure",
2308
- "members":{
2309
- "Message":{"shape":"string"}
2310
- },
2311
- "error":{"httpStatusCode":400},
2312
- "exception":true
2313
- },
2314
- "InvalidForwardCookies":{
2315
- "type":"structure",
2316
- "members":{
2317
- "Message":{"shape":"string"}
2318
- },
2319
- "error":{"httpStatusCode":400},
2320
- "exception":true
2321
- },
2322
- "InvalidGeoRestrictionParameter":{
2323
- "type":"structure",
2324
- "members":{
2325
- "Message":{"shape":"string"}
2326
- },
2327
- "error":{"httpStatusCode":400},
2328
- "exception":true
2329
- },
2330
- "InvalidHeadersForS3Origin":{
2331
- "type":"structure",
2332
- "members":{
2333
- "Message":{"shape":"string"}
2334
- },
2335
- "error":{"httpStatusCode":400},
2336
- "exception":true
2337
- },
2338
- "InvalidIfMatchVersion":{
2339
- "type":"structure",
2340
- "members":{
2341
- "Message":{"shape":"string"}
2342
- },
2343
- "error":{"httpStatusCode":400},
2344
- "exception":true
2345
- },
2346
- "InvalidLambdaFunctionAssociation":{
2347
- "type":"structure",
2348
- "members":{
2349
- "Message":{"shape":"string"}
2350
- },
2351
- "error":{"httpStatusCode":400},
2352
- "exception":true
2353
- },
2354
- "InvalidLocationCode":{
2355
- "type":"structure",
2356
- "members":{
2357
- "Message":{"shape":"string"}
2358
- },
2359
- "error":{"httpStatusCode":400},
2360
- "exception":true
2361
- },
2362
- "InvalidMinimumProtocolVersion":{
2363
- "type":"structure",
2364
- "members":{
2365
- "Message":{"shape":"string"}
2366
- },
2367
- "error":{"httpStatusCode":400},
2368
- "exception":true
2369
- },
2370
- "InvalidOrigin":{
2371
- "type":"structure",
2372
- "members":{
2373
- "Message":{"shape":"string"}
2374
- },
2375
- "error":{"httpStatusCode":400},
2376
- "exception":true
2377
- },
2378
- "InvalidOriginAccessIdentity":{
2379
- "type":"structure",
2380
- "members":{
2381
- "Message":{"shape":"string"}
2382
- },
2383
- "error":{"httpStatusCode":400},
2384
- "exception":true
2385
- },
2386
- "InvalidOriginKeepaliveTimeout":{
2387
- "type":"structure",
2388
- "members":{
2389
- "Message":{"shape":"string"}
2390
- },
2391
- "error":{"httpStatusCode":400},
2392
- "exception":true
2393
- },
2394
- "InvalidOriginReadTimeout":{
2395
- "type":"structure",
2396
- "members":{
2397
- "Message":{"shape":"string"}
2398
- },
2399
- "error":{"httpStatusCode":400},
2400
- "exception":true
2401
- },
2402
- "InvalidProtocolSettings":{
2403
- "type":"structure",
2404
- "members":{
2405
- "Message":{"shape":"string"}
2406
- },
2407
- "error":{"httpStatusCode":400},
2408
- "exception":true
2409
- },
2410
- "InvalidQueryStringParameters":{
2411
- "type":"structure",
2412
- "members":{
2413
- "Message":{"shape":"string"}
2414
- },
2415
- "error":{"httpStatusCode":400},
2416
- "exception":true
2417
- },
2418
- "InvalidRelativePath":{
2419
- "type":"structure",
2420
- "members":{
2421
- "Message":{"shape":"string"}
2422
- },
2423
- "error":{"httpStatusCode":400},
2424
- "exception":true
2425
- },
2426
- "InvalidRequiredProtocol":{
2427
- "type":"structure",
2428
- "members":{
2429
- "Message":{"shape":"string"}
2430
- },
2431
- "error":{"httpStatusCode":400},
2432
- "exception":true
2433
- },
2434
- "InvalidResponseCode":{
2435
- "type":"structure",
2436
- "members":{
2437
- "Message":{"shape":"string"}
2438
- },
2439
- "error":{"httpStatusCode":400},
2440
- "exception":true
2441
- },
2442
- "InvalidTTLOrder":{
2443
- "type":"structure",
2444
- "members":{
2445
- "Message":{"shape":"string"}
2446
- },
2447
- "error":{"httpStatusCode":400},
2448
- "exception":true
2449
- },
2450
- "InvalidTagging":{
2451
- "type":"structure",
2452
- "members":{
2453
- "Message":{"shape":"string"}
2454
- },
2455
- "error":{"httpStatusCode":400},
2456
- "exception":true
2457
- },
2458
- "InvalidViewerCertificate":{
2459
- "type":"structure",
2460
- "members":{
2461
- "Message":{"shape":"string"}
2462
- },
2463
- "error":{"httpStatusCode":400},
2464
- "exception":true
2465
- },
2466
- "InvalidWebACLId":{
2467
- "type":"structure",
2468
- "members":{
2469
- "Message":{"shape":"string"}
2470
- },
2471
- "error":{"httpStatusCode":400},
2472
- "exception":true
2473
- },
2474
- "Invalidation":{
2475
- "type":"structure",
2476
- "required":[
2477
- "Id",
2478
- "Status",
2479
- "CreateTime",
2480
- "InvalidationBatch"
2481
- ],
2482
- "members":{
2483
- "Id":{"shape":"string"},
2484
- "Status":{"shape":"string"},
2485
- "CreateTime":{"shape":"timestamp"},
2486
- "InvalidationBatch":{"shape":"InvalidationBatch"}
2487
- }
2488
- },
2489
- "InvalidationBatch":{
2490
- "type":"structure",
2491
- "required":[
2492
- "Paths",
2493
- "CallerReference"
2494
- ],
2495
- "members":{
2496
- "Paths":{"shape":"Paths"},
2497
- "CallerReference":{"shape":"string"}
2498
- }
2499
- },
2500
- "InvalidationList":{
2501
- "type":"structure",
2502
- "required":[
2503
- "Marker",
2504
- "MaxItems",
2505
- "IsTruncated",
2506
- "Quantity"
2507
- ],
2508
- "members":{
2509
- "Marker":{"shape":"string"},
2510
- "NextMarker":{"shape":"string"},
2511
- "MaxItems":{"shape":"integer"},
2512
- "IsTruncated":{"shape":"boolean"},
2513
- "Quantity":{"shape":"integer"},
2514
- "Items":{"shape":"InvalidationSummaryList"}
2515
- }
2516
- },
2517
- "InvalidationSummary":{
2518
- "type":"structure",
2519
- "required":[
2520
- "Id",
2521
- "CreateTime",
2522
- "Status"
2523
- ],
2524
- "members":{
2525
- "Id":{"shape":"string"},
2526
- "CreateTime":{"shape":"timestamp"},
2527
- "Status":{"shape":"string"}
2528
- }
2529
- },
2530
- "InvalidationSummaryList":{
2531
- "type":"list",
2532
- "member":{
2533
- "shape":"InvalidationSummary",
2534
- "locationName":"InvalidationSummary"
2535
- }
2536
- },
2537
- "ItemSelection":{
2538
- "type":"string",
2539
- "enum":[
2540
- "none",
2541
- "whitelist",
2542
- "all"
2543
- ]
2544
- },
2545
- "KeyPairIdList":{
2546
- "type":"list",
2547
- "member":{
2548
- "shape":"string",
2549
- "locationName":"KeyPairId"
2550
- }
2551
- },
2552
- "KeyPairIds":{
2553
- "type":"structure",
2554
- "required":["Quantity"],
2555
- "members":{
2556
- "Quantity":{"shape":"integer"},
2557
- "Items":{"shape":"KeyPairIdList"}
2558
- }
2559
- },
2560
- "LambdaFunctionARN":{"type":"string"},
2561
- "LambdaFunctionAssociation":{
2562
- "type":"structure",
2563
- "required":[
2564
- "LambdaFunctionARN",
2565
- "EventType"
2566
- ],
2567
- "members":{
2568
- "LambdaFunctionARN":{"shape":"LambdaFunctionARN"},
2569
- "EventType":{"shape":"EventType"},
2570
- "IncludeBody":{"shape":"boolean"}
2571
- }
2572
- },
2573
- "LambdaFunctionAssociationList":{
2574
- "type":"list",
2575
- "member":{
2576
- "shape":"LambdaFunctionAssociation",
2577
- "locationName":"LambdaFunctionAssociation"
2578
- }
2579
- },
2580
- "LambdaFunctionAssociations":{
2581
- "type":"structure",
2582
- "required":["Quantity"],
2583
- "members":{
2584
- "Quantity":{"shape":"integer"},
2585
- "Items":{"shape":"LambdaFunctionAssociationList"}
2586
- }
2587
- },
2588
- "ListCloudFrontOriginAccessIdentitiesRequest":{
2589
- "type":"structure",
2590
- "members":{
2591
- "Marker":{
2592
- "shape":"string",
2593
- "location":"querystring",
2594
- "locationName":"Marker"
2595
- },
2596
- "MaxItems":{
2597
- "shape":"string",
2598
- "location":"querystring",
2599
- "locationName":"MaxItems"
2600
- }
2601
- }
2602
- },
2603
- "ListCloudFrontOriginAccessIdentitiesResult":{
2604
- "type":"structure",
2605
- "members":{
2606
- "CloudFrontOriginAccessIdentityList":{"shape":"CloudFrontOriginAccessIdentityList"}
2607
- },
2608
- "payload":"CloudFrontOriginAccessIdentityList"
2609
- },
2610
- "ListDistributionsByWebACLIdRequest":{
2611
- "type":"structure",
2612
- "required":["WebACLId"],
2613
- "members":{
2614
- "Marker":{
2615
- "shape":"string",
2616
- "location":"querystring",
2617
- "locationName":"Marker"
2618
- },
2619
- "MaxItems":{
2620
- "shape":"string",
2621
- "location":"querystring",
2622
- "locationName":"MaxItems"
2623
- },
2624
- "WebACLId":{
2625
- "shape":"string",
2626
- "location":"uri",
2627
- "locationName":"WebACLId"
2628
- }
2629
- }
2630
- },
2631
- "ListDistributionsByWebACLIdResult":{
2632
- "type":"structure",
2633
- "members":{
2634
- "DistributionList":{"shape":"DistributionList"}
2635
- },
2636
- "payload":"DistributionList"
2637
- },
2638
- "ListDistributionsRequest":{
2639
- "type":"structure",
2640
- "members":{
2641
- "Marker":{
2642
- "shape":"string",
2643
- "location":"querystring",
2644
- "locationName":"Marker"
2645
- },
2646
- "MaxItems":{
2647
- "shape":"string",
2648
- "location":"querystring",
2649
- "locationName":"MaxItems"
2650
- }
2651
- }
2652
- },
2653
- "ListDistributionsResult":{
2654
- "type":"structure",
2655
- "members":{
2656
- "DistributionList":{"shape":"DistributionList"}
2657
- },
2658
- "payload":"DistributionList"
2659
- },
2660
- "ListFieldLevelEncryptionConfigsRequest":{
2661
- "type":"structure",
2662
- "members":{
2663
- "Marker":{
2664
- "shape":"string",
2665
- "location":"querystring",
2666
- "locationName":"Marker"
2667
- },
2668
- "MaxItems":{
2669
- "shape":"string",
2670
- "location":"querystring",
2671
- "locationName":"MaxItems"
2672
- }
2673
- }
2674
- },
2675
- "ListFieldLevelEncryptionConfigsResult":{
2676
- "type":"structure",
2677
- "members":{
2678
- "FieldLevelEncryptionList":{"shape":"FieldLevelEncryptionList"}
2679
- },
2680
- "payload":"FieldLevelEncryptionList"
2681
- },
2682
- "ListFieldLevelEncryptionProfilesRequest":{
2683
- "type":"structure",
2684
- "members":{
2685
- "Marker":{
2686
- "shape":"string",
2687
- "location":"querystring",
2688
- "locationName":"Marker"
2689
- },
2690
- "MaxItems":{
2691
- "shape":"string",
2692
- "location":"querystring",
2693
- "locationName":"MaxItems"
2694
- }
2695
- }
2696
- },
2697
- "ListFieldLevelEncryptionProfilesResult":{
2698
- "type":"structure",
2699
- "members":{
2700
- "FieldLevelEncryptionProfileList":{"shape":"FieldLevelEncryptionProfileList"}
2701
- },
2702
- "payload":"FieldLevelEncryptionProfileList"
2703
- },
2704
- "ListInvalidationsRequest":{
2705
- "type":"structure",
2706
- "required":["DistributionId"],
2707
- "members":{
2708
- "DistributionId":{
2709
- "shape":"string",
2710
- "location":"uri",
2711
- "locationName":"DistributionId"
2712
- },
2713
- "Marker":{
2714
- "shape":"string",
2715
- "location":"querystring",
2716
- "locationName":"Marker"
2717
- },
2718
- "MaxItems":{
2719
- "shape":"string",
2720
- "location":"querystring",
2721
- "locationName":"MaxItems"
2722
- }
2723
- }
2724
- },
2725
- "ListInvalidationsResult":{
2726
- "type":"structure",
2727
- "members":{
2728
- "InvalidationList":{"shape":"InvalidationList"}
2729
- },
2730
- "payload":"InvalidationList"
2731
- },
2732
- "ListPublicKeysRequest":{
2733
- "type":"structure",
2734
- "members":{
2735
- "Marker":{
2736
- "shape":"string",
2737
- "location":"querystring",
2738
- "locationName":"Marker"
2739
- },
2740
- "MaxItems":{
2741
- "shape":"string",
2742
- "location":"querystring",
2743
- "locationName":"MaxItems"
2744
- }
2745
- }
2746
- },
2747
- "ListPublicKeysResult":{
2748
- "type":"structure",
2749
- "members":{
2750
- "PublicKeyList":{"shape":"PublicKeyList"}
2751
- },
2752
- "payload":"PublicKeyList"
2753
- },
2754
- "ListStreamingDistributionsRequest":{
2755
- "type":"structure",
2756
- "members":{
2757
- "Marker":{
2758
- "shape":"string",
2759
- "location":"querystring",
2760
- "locationName":"Marker"
2761
- },
2762
- "MaxItems":{
2763
- "shape":"string",
2764
- "location":"querystring",
2765
- "locationName":"MaxItems"
2766
- }
2767
- }
2768
- },
2769
- "ListStreamingDistributionsResult":{
2770
- "type":"structure",
2771
- "members":{
2772
- "StreamingDistributionList":{"shape":"StreamingDistributionList"}
2773
- },
2774
- "payload":"StreamingDistributionList"
2775
- },
2776
- "ListTagsForResourceRequest":{
2777
- "type":"structure",
2778
- "required":["Resource"],
2779
- "members":{
2780
- "Resource":{
2781
- "shape":"ResourceARN",
2782
- "location":"querystring",
2783
- "locationName":"Resource"
2784
- }
2785
- }
2786
- },
2787
- "ListTagsForResourceResult":{
2788
- "type":"structure",
2789
- "required":["Tags"],
2790
- "members":{
2791
- "Tags":{"shape":"Tags"}
2792
- },
2793
- "payload":"Tags"
2794
- },
2795
- "LocationList":{
2796
- "type":"list",
2797
- "member":{
2798
- "shape":"string",
2799
- "locationName":"Location"
2800
- }
2801
- },
2802
- "LoggingConfig":{
2803
- "type":"structure",
2804
- "required":[
2805
- "Enabled",
2806
- "IncludeCookies",
2807
- "Bucket",
2808
- "Prefix"
2809
- ],
2810
- "members":{
2811
- "Enabled":{"shape":"boolean"},
2812
- "IncludeCookies":{"shape":"boolean"},
2813
- "Bucket":{"shape":"string"},
2814
- "Prefix":{"shape":"string"}
2815
- }
2816
- },
2817
- "Method":{
2818
- "type":"string",
2819
- "enum":[
2820
- "GET",
2821
- "HEAD",
2822
- "POST",
2823
- "PUT",
2824
- "PATCH",
2825
- "OPTIONS",
2826
- "DELETE"
2827
- ]
2828
- },
2829
- "MethodsList":{
2830
- "type":"list",
2831
- "member":{
2832
- "shape":"Method",
2833
- "locationName":"Method"
2834
- }
2835
- },
2836
- "MinimumProtocolVersion":{
2837
- "type":"string",
2838
- "enum":[
2839
- "SSLv3",
2840
- "TLSv1",
2841
- "TLSv1_2016",
2842
- "TLSv1.1_2016",
2843
- "TLSv1.2_2018"
2844
- ]
2845
- },
2846
- "MissingBody":{
2847
- "type":"structure",
2848
- "members":{
2849
- "Message":{"shape":"string"}
2850
- },
2851
- "error":{"httpStatusCode":400},
2852
- "exception":true
2853
- },
2854
- "NoSuchCloudFrontOriginAccessIdentity":{
2855
- "type":"structure",
2856
- "members":{
2857
- "Message":{"shape":"string"}
2858
- },
2859
- "error":{"httpStatusCode":404},
2860
- "exception":true
2861
- },
2862
- "NoSuchDistribution":{
2863
- "type":"structure",
2864
- "members":{
2865
- "Message":{"shape":"string"}
2866
- },
2867
- "error":{"httpStatusCode":404},
2868
- "exception":true
2869
- },
2870
- "NoSuchFieldLevelEncryptionConfig":{
2871
- "type":"structure",
2872
- "members":{
2873
- "Message":{"shape":"string"}
2874
- },
2875
- "error":{"httpStatusCode":404},
2876
- "exception":true
2877
- },
2878
- "NoSuchFieldLevelEncryptionProfile":{
2879
- "type":"structure",
2880
- "members":{
2881
- "Message":{"shape":"string"}
2882
- },
2883
- "error":{"httpStatusCode":404},
2884
- "exception":true
2885
- },
2886
- "NoSuchInvalidation":{
2887
- "type":"structure",
2888
- "members":{
2889
- "Message":{"shape":"string"}
2890
- },
2891
- "error":{"httpStatusCode":404},
2892
- "exception":true
2893
- },
2894
- "NoSuchOrigin":{
2895
- "type":"structure",
2896
- "members":{
2897
- "Message":{"shape":"string"}
2898
- },
2899
- "error":{"httpStatusCode":404},
2900
- "exception":true
2901
- },
2902
- "NoSuchPublicKey":{
2903
- "type":"structure",
2904
- "members":{
2905
- "Message":{"shape":"string"}
2906
- },
2907
- "error":{"httpStatusCode":404},
2908
- "exception":true
2909
- },
2910
- "NoSuchResource":{
2911
- "type":"structure",
2912
- "members":{
2913
- "Message":{"shape":"string"}
2914
- },
2915
- "error":{"httpStatusCode":404},
2916
- "exception":true
2917
- },
2918
- "NoSuchStreamingDistribution":{
2919
- "type":"structure",
2920
- "members":{
2921
- "Message":{"shape":"string"}
2922
- },
2923
- "error":{"httpStatusCode":404},
2924
- "exception":true
2925
- },
2926
- "Origin":{
2927
- "type":"structure",
2928
- "required":[
2929
- "Id",
2930
- "DomainName"
2931
- ],
2932
- "members":{
2933
- "Id":{"shape":"string"},
2934
- "DomainName":{"shape":"string"},
2935
- "OriginPath":{"shape":"string"},
2936
- "CustomHeaders":{"shape":"CustomHeaders"},
2937
- "S3OriginConfig":{"shape":"S3OriginConfig"},
2938
- "CustomOriginConfig":{"shape":"CustomOriginConfig"}
2939
- }
2940
- },
2941
- "OriginCustomHeader":{
2942
- "type":"structure",
2943
- "required":[
2944
- "HeaderName",
2945
- "HeaderValue"
2946
- ],
2947
- "members":{
2948
- "HeaderName":{"shape":"string"},
2949
- "HeaderValue":{"shape":"string"}
2950
- }
2951
- },
2952
- "OriginCustomHeadersList":{
2953
- "type":"list",
2954
- "member":{
2955
- "shape":"OriginCustomHeader",
2956
- "locationName":"OriginCustomHeader"
2957
- }
2958
- },
2959
- "OriginGroup":{
2960
- "type":"structure",
2961
- "required":[
2962
- "Id",
2963
- "FailoverCriteria",
2964
- "Members"
2965
- ],
2966
- "members":{
2967
- "Id":{"shape":"string"},
2968
- "FailoverCriteria":{"shape":"OriginGroupFailoverCriteria"},
2969
- "Members":{"shape":"OriginGroupMembers"}
2970
- }
2971
- },
2972
- "OriginGroupFailoverCriteria":{
2973
- "type":"structure",
2974
- "required":["StatusCodes"],
2975
- "members":{
2976
- "StatusCodes":{"shape":"StatusCodes"}
2977
- }
2978
- },
2979
- "OriginGroupList":{
2980
- "type":"list",
2981
- "member":{
2982
- "shape":"OriginGroup",
2983
- "locationName":"OriginGroup"
2984
- }
2985
- },
2986
- "OriginGroupMember":{
2987
- "type":"structure",
2988
- "required":["OriginId"],
2989
- "members":{
2990
- "OriginId":{"shape":"string"}
2991
- }
2992
- },
2993
- "OriginGroupMemberList":{
2994
- "type":"list",
2995
- "member":{
2996
- "shape":"OriginGroupMember",
2997
- "locationName":"OriginGroupMember"
2998
- },
2999
- "max":2,
3000
- "min":2
3001
- },
3002
- "OriginGroupMembers":{
3003
- "type":"structure",
3004
- "required":[
3005
- "Quantity",
3006
- "Items"
3007
- ],
3008
- "members":{
3009
- "Quantity":{"shape":"integer"},
3010
- "Items":{"shape":"OriginGroupMemberList"}
3011
- }
3012
- },
3013
- "OriginGroups":{
3014
- "type":"structure",
3015
- "required":["Quantity"],
3016
- "members":{
3017
- "Quantity":{"shape":"integer"},
3018
- "Items":{"shape":"OriginGroupList"}
3019
- }
3020
- },
3021
- "OriginList":{
3022
- "type":"list",
3023
- "member":{
3024
- "shape":"Origin",
3025
- "locationName":"Origin"
3026
- },
3027
- "min":1
3028
- },
3029
- "OriginProtocolPolicy":{
3030
- "type":"string",
3031
- "enum":[
3032
- "http-only",
3033
- "match-viewer",
3034
- "https-only"
3035
- ]
3036
- },
3037
- "OriginSslProtocols":{
3038
- "type":"structure",
3039
- "required":[
3040
- "Quantity",
3041
- "Items"
3042
- ],
3043
- "members":{
3044
- "Quantity":{"shape":"integer"},
3045
- "Items":{"shape":"SslProtocolsList"}
3046
- }
3047
- },
3048
- "Origins":{
3049
- "type":"structure",
3050
- "required":[
3051
- "Quantity",
3052
- "Items"
3053
- ],
3054
- "members":{
3055
- "Quantity":{"shape":"integer"},
3056
- "Items":{"shape":"OriginList"}
3057
- }
3058
- },
3059
- "PathList":{
3060
- "type":"list",
3061
- "member":{
3062
- "shape":"string",
3063
- "locationName":"Path"
3064
- }
3065
- },
3066
- "Paths":{
3067
- "type":"structure",
3068
- "required":["Quantity"],
3069
- "members":{
3070
- "Quantity":{"shape":"integer"},
3071
- "Items":{"shape":"PathList"}
3072
- }
3073
- },
3074
- "PreconditionFailed":{
3075
- "type":"structure",
3076
- "members":{
3077
- "Message":{"shape":"string"}
3078
- },
3079
- "error":{"httpStatusCode":412},
3080
- "exception":true
3081
- },
3082
- "PriceClass":{
3083
- "type":"string",
3084
- "enum":[
3085
- "PriceClass_100",
3086
- "PriceClass_200",
3087
- "PriceClass_All"
3088
- ]
3089
- },
3090
- "PublicKey":{
3091
- "type":"structure",
3092
- "required":[
3093
- "Id",
3094
- "CreatedTime",
3095
- "PublicKeyConfig"
3096
- ],
3097
- "members":{
3098
- "Id":{"shape":"string"},
3099
- "CreatedTime":{"shape":"timestamp"},
3100
- "PublicKeyConfig":{"shape":"PublicKeyConfig"}
3101
- }
3102
- },
3103
- "PublicKeyAlreadyExists":{
3104
- "type":"structure",
3105
- "members":{
3106
- "Message":{"shape":"string"}
3107
- },
3108
- "error":{"httpStatusCode":409},
3109
- "exception":true
3110
- },
3111
- "PublicKeyConfig":{
3112
- "type":"structure",
3113
- "required":[
3114
- "CallerReference",
3115
- "Name",
3116
- "EncodedKey"
3117
- ],
3118
- "members":{
3119
- "CallerReference":{"shape":"string"},
3120
- "Name":{"shape":"string"},
3121
- "EncodedKey":{"shape":"string"},
3122
- "Comment":{"shape":"string"}
3123
- }
3124
- },
3125
- "PublicKeyInUse":{
3126
- "type":"structure",
3127
- "members":{
3128
- "Message":{"shape":"string"}
3129
- },
3130
- "error":{"httpStatusCode":409},
3131
- "exception":true
3132
- },
3133
- "PublicKeyList":{
3134
- "type":"structure",
3135
- "required":[
3136
- "MaxItems",
3137
- "Quantity"
3138
- ],
3139
- "members":{
3140
- "NextMarker":{"shape":"string"},
3141
- "MaxItems":{"shape":"integer"},
3142
- "Quantity":{"shape":"integer"},
3143
- "Items":{"shape":"PublicKeySummaryList"}
3144
- }
3145
- },
3146
- "PublicKeySummary":{
3147
- "type":"structure",
3148
- "required":[
3149
- "Id",
3150
- "Name",
3151
- "CreatedTime",
3152
- "EncodedKey"
3153
- ],
3154
- "members":{
3155
- "Id":{"shape":"string"},
3156
- "Name":{"shape":"string"},
3157
- "CreatedTime":{"shape":"timestamp"},
3158
- "EncodedKey":{"shape":"string"},
3159
- "Comment":{"shape":"string"}
3160
- }
3161
- },
3162
- "PublicKeySummaryList":{
3163
- "type":"list",
3164
- "member":{
3165
- "shape":"PublicKeySummary",
3166
- "locationName":"PublicKeySummary"
3167
- }
3168
- },
3169
- "QueryArgProfile":{
3170
- "type":"structure",
3171
- "required":[
3172
- "QueryArg",
3173
- "ProfileId"
3174
- ],
3175
- "members":{
3176
- "QueryArg":{"shape":"string"},
3177
- "ProfileId":{"shape":"string"}
3178
- }
3179
- },
3180
- "QueryArgProfileConfig":{
3181
- "type":"structure",
3182
- "required":["ForwardWhenQueryArgProfileIsUnknown"],
3183
- "members":{
3184
- "ForwardWhenQueryArgProfileIsUnknown":{"shape":"boolean"},
3185
- "QueryArgProfiles":{"shape":"QueryArgProfiles"}
3186
- }
3187
- },
3188
- "QueryArgProfileEmpty":{
3189
- "type":"structure",
3190
- "members":{
3191
- "Message":{"shape":"string"}
3192
- },
3193
- "error":{"httpStatusCode":400},
3194
- "exception":true
3195
- },
3196
- "QueryArgProfileList":{
3197
- "type":"list",
3198
- "member":{
3199
- "shape":"QueryArgProfile",
3200
- "locationName":"QueryArgProfile"
3201
- }
3202
- },
3203
- "QueryArgProfiles":{
3204
- "type":"structure",
3205
- "required":["Quantity"],
3206
- "members":{
3207
- "Quantity":{"shape":"integer"},
3208
- "Items":{"shape":"QueryArgProfileList"}
3209
- }
3210
- },
3211
- "QueryStringCacheKeys":{
3212
- "type":"structure",
3213
- "required":["Quantity"],
3214
- "members":{
3215
- "Quantity":{"shape":"integer"},
3216
- "Items":{"shape":"QueryStringCacheKeysList"}
3217
- }
3218
- },
3219
- "QueryStringCacheKeysList":{
3220
- "type":"list",
3221
- "member":{
3222
- "shape":"string",
3223
- "locationName":"Name"
3224
- }
3225
- },
3226
- "ResourceARN":{
3227
- "type":"string",
3228
- "pattern":"arn:aws:cloudfront::[0-9]+:.*"
3229
- },
3230
- "Restrictions":{
3231
- "type":"structure",
3232
- "required":["GeoRestriction"],
3233
- "members":{
3234
- "GeoRestriction":{"shape":"GeoRestriction"}
3235
- }
3236
- },
3237
- "S3Origin":{
3238
- "type":"structure",
3239
- "required":[
3240
- "DomainName",
3241
- "OriginAccessIdentity"
3242
- ],
3243
- "members":{
3244
- "DomainName":{"shape":"string"},
3245
- "OriginAccessIdentity":{"shape":"string"}
3246
- }
3247
- },
3248
- "S3OriginConfig":{
3249
- "type":"structure",
3250
- "required":["OriginAccessIdentity"],
3251
- "members":{
3252
- "OriginAccessIdentity":{"shape":"string"}
3253
- }
3254
- },
3255
- "SSLSupportMethod":{
3256
- "type":"string",
3257
- "enum":[
3258
- "sni-only",
3259
- "vip"
3260
- ]
3261
- },
3262
- "Signer":{
3263
- "type":"structure",
3264
- "members":{
3265
- "AwsAccountNumber":{"shape":"string"},
3266
- "KeyPairIds":{"shape":"KeyPairIds"}
3267
- }
3268
- },
3269
- "SignerList":{
3270
- "type":"list",
3271
- "member":{
3272
- "shape":"Signer",
3273
- "locationName":"Signer"
3274
- }
3275
- },
3276
- "SslProtocol":{
3277
- "type":"string",
3278
- "enum":[
3279
- "SSLv3",
3280
- "TLSv1",
3281
- "TLSv1.1",
3282
- "TLSv1.2"
3283
- ]
3284
- },
3285
- "SslProtocolsList":{
3286
- "type":"list",
3287
- "member":{
3288
- "shape":"SslProtocol",
3289
- "locationName":"SslProtocol"
3290
- }
3291
- },
3292
- "StatusCodeList":{
3293
- "type":"list",
3294
- "member":{
3295
- "shape":"integer",
3296
- "locationName":"StatusCode"
3297
- },
3298
- "min":1
3299
- },
3300
- "StatusCodes":{
3301
- "type":"structure",
3302
- "required":[
3303
- "Quantity",
3304
- "Items"
3305
- ],
3306
- "members":{
3307
- "Quantity":{"shape":"integer"},
3308
- "Items":{"shape":"StatusCodeList"}
3309
- }
3310
- },
3311
- "StreamingDistribution":{
3312
- "type":"structure",
3313
- "required":[
3314
- "Id",
3315
- "ARN",
3316
- "Status",
3317
- "DomainName",
3318
- "ActiveTrustedSigners",
3319
- "StreamingDistributionConfig"
3320
- ],
3321
- "members":{
3322
- "Id":{"shape":"string"},
3323
- "ARN":{"shape":"string"},
3324
- "Status":{"shape":"string"},
3325
- "LastModifiedTime":{"shape":"timestamp"},
3326
- "DomainName":{"shape":"string"},
3327
- "ActiveTrustedSigners":{"shape":"ActiveTrustedSigners"},
3328
- "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"}
3329
- }
3330
- },
3331
- "StreamingDistributionAlreadyExists":{
3332
- "type":"structure",
3333
- "members":{
3334
- "Message":{"shape":"string"}
3335
- },
3336
- "error":{"httpStatusCode":409},
3337
- "exception":true
3338
- },
3339
- "StreamingDistributionConfig":{
3340
- "type":"structure",
3341
- "required":[
3342
- "CallerReference",
3343
- "S3Origin",
3344
- "Comment",
3345
- "TrustedSigners",
3346
- "Enabled"
3347
- ],
3348
- "members":{
3349
- "CallerReference":{"shape":"string"},
3350
- "S3Origin":{"shape":"S3Origin"},
3351
- "Aliases":{"shape":"Aliases"},
3352
- "Comment":{"shape":"string"},
3353
- "Logging":{"shape":"StreamingLoggingConfig"},
3354
- "TrustedSigners":{"shape":"TrustedSigners"},
3355
- "PriceClass":{"shape":"PriceClass"},
3356
- "Enabled":{"shape":"boolean"}
3357
- }
3358
- },
3359
- "StreamingDistributionConfigWithTags":{
3360
- "type":"structure",
3361
- "required":[
3362
- "StreamingDistributionConfig",
3363
- "Tags"
3364
- ],
3365
- "members":{
3366
- "StreamingDistributionConfig":{"shape":"StreamingDistributionConfig"},
3367
- "Tags":{"shape":"Tags"}
3368
- }
3369
- },
3370
- "StreamingDistributionList":{
3371
- "type":"structure",
3372
- "required":[
3373
- "Marker",
3374
- "MaxItems",
3375
- "IsTruncated",
3376
- "Quantity"
3377
- ],
3378
- "members":{
3379
- "Marker":{"shape":"string"},
3380
- "NextMarker":{"shape":"string"},
3381
- "MaxItems":{"shape":"integer"},
3382
- "IsTruncated":{"shape":"boolean"},
3383
- "Quantity":{"shape":"integer"},
3384
- "Items":{"shape":"StreamingDistributionSummaryList"}
3385
- }
3386
- },
3387
- "StreamingDistributionNotDisabled":{
3388
- "type":"structure",
3389
- "members":{
3390
- "Message":{"shape":"string"}
3391
- },
3392
- "error":{"httpStatusCode":409},
3393
- "exception":true
3394
- },
3395
- "StreamingDistributionSummary":{
3396
- "type":"structure",
3397
- "required":[
3398
- "Id",
3399
- "ARN",
3400
- "Status",
3401
- "LastModifiedTime",
3402
- "DomainName",
3403
- "S3Origin",
3404
- "Aliases",
3405
- "TrustedSigners",
3406
- "Comment",
3407
- "PriceClass",
3408
- "Enabled"
3409
- ],
3410
- "members":{
3411
- "Id":{"shape":"string"},
3412
- "ARN":{"shape":"string"},
3413
- "Status":{"shape":"string"},
3414
- "LastModifiedTime":{"shape":"timestamp"},
3415
- "DomainName":{"shape":"string"},
3416
- "S3Origin":{"shape":"S3Origin"},
3417
- "Aliases":{"shape":"Aliases"},
3418
- "TrustedSigners":{"shape":"TrustedSigners"},
3419
- "Comment":{"shape":"string"},
3420
- "PriceClass":{"shape":"PriceClass"},
3421
- "Enabled":{"shape":"boolean"}
3422
- }
3423
- },
3424
- "StreamingDistributionSummaryList":{
3425
- "type":"list",
3426
- "member":{
3427
- "shape":"StreamingDistributionSummary",
3428
- "locationName":"StreamingDistributionSummary"
3429
- }
3430
- },
3431
- "StreamingLoggingConfig":{
3432
- "type":"structure",
3433
- "required":[
3434
- "Enabled",
3435
- "Bucket",
3436
- "Prefix"
3437
- ],
3438
- "members":{
3439
- "Enabled":{"shape":"boolean"},
3440
- "Bucket":{"shape":"string"},
3441
- "Prefix":{"shape":"string"}
3442
- }
3443
- },
3444
- "Tag":{
3445
- "type":"structure",
3446
- "required":["Key"],
3447
- "members":{
3448
- "Key":{"shape":"TagKey"},
3449
- "Value":{"shape":"TagValue"}
3450
- }
3451
- },
3452
- "TagKey":{
3453
- "type":"string",
3454
- "max":128,
3455
- "min":1,
3456
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3457
- },
3458
- "TagKeyList":{
3459
- "type":"list",
3460
- "member":{
3461
- "shape":"TagKey",
3462
- "locationName":"Key"
3463
- }
3464
- },
3465
- "TagKeys":{
3466
- "type":"structure",
3467
- "members":{
3468
- "Items":{"shape":"TagKeyList"}
3469
- }
3470
- },
3471
- "TagList":{
3472
- "type":"list",
3473
- "member":{
3474
- "shape":"Tag",
3475
- "locationName":"Tag"
3476
- }
3477
- },
3478
- "TagResourceRequest":{
3479
- "type":"structure",
3480
- "required":[
3481
- "Resource",
3482
- "Tags"
3483
- ],
3484
- "members":{
3485
- "Resource":{
3486
- "shape":"ResourceARN",
3487
- "location":"querystring",
3488
- "locationName":"Resource"
3489
- },
3490
- "Tags":{
3491
- "shape":"Tags",
3492
- "locationName":"Tags",
3493
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3494
- }
3495
- },
3496
- "payload":"Tags"
3497
- },
3498
- "TagValue":{
3499
- "type":"string",
3500
- "max":256,
3501
- "min":0,
3502
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
3503
- },
3504
- "Tags":{
3505
- "type":"structure",
3506
- "members":{
3507
- "Items":{"shape":"TagList"}
3508
- }
3509
- },
3510
- "TooManyCacheBehaviors":{
3511
- "type":"structure",
3512
- "members":{
3513
- "Message":{"shape":"string"}
3514
- },
3515
- "error":{"httpStatusCode":400},
3516
- "exception":true
3517
- },
3518
- "TooManyCertificates":{
3519
- "type":"structure",
3520
- "members":{
3521
- "Message":{"shape":"string"}
3522
- },
3523
- "error":{"httpStatusCode":400},
3524
- "exception":true
3525
- },
3526
- "TooManyCloudFrontOriginAccessIdentities":{
3527
- "type":"structure",
3528
- "members":{
3529
- "Message":{"shape":"string"}
3530
- },
3531
- "error":{"httpStatusCode":400},
3532
- "exception":true
3533
- },
3534
- "TooManyCookieNamesInWhiteList":{
3535
- "type":"structure",
3536
- "members":{
3537
- "Message":{"shape":"string"}
3538
- },
3539
- "error":{"httpStatusCode":400},
3540
- "exception":true
3541
- },
3542
- "TooManyDistributionCNAMEs":{
3543
- "type":"structure",
3544
- "members":{
3545
- "Message":{"shape":"string"}
3546
- },
3547
- "error":{"httpStatusCode":400},
3548
- "exception":true
3549
- },
3550
- "TooManyDistributions":{
3551
- "type":"structure",
3552
- "members":{
3553
- "Message":{"shape":"string"}
3554
- },
3555
- "error":{"httpStatusCode":400},
3556
- "exception":true
3557
- },
3558
- "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig":{
3559
- "type":"structure",
3560
- "members":{
3561
- "Message":{"shape":"string"}
3562
- },
3563
- "error":{"httpStatusCode":400},
3564
- "exception":true
3565
- },
3566
- "TooManyDistributionsWithLambdaAssociations":{
3567
- "type":"structure",
3568
- "members":{
3569
- "Message":{"shape":"string"}
3570
- },
3571
- "error":{"httpStatusCode":400},
3572
- "exception":true
3573
- },
3574
- "TooManyFieldLevelEncryptionConfigs":{
3575
- "type":"structure",
3576
- "members":{
3577
- "Message":{"shape":"string"}
3578
- },
3579
- "error":{"httpStatusCode":400},
3580
- "exception":true
3581
- },
3582
- "TooManyFieldLevelEncryptionContentTypeProfiles":{
3583
- "type":"structure",
3584
- "members":{
3585
- "Message":{"shape":"string"}
3586
- },
3587
- "error":{"httpStatusCode":400},
3588
- "exception":true
3589
- },
3590
- "TooManyFieldLevelEncryptionEncryptionEntities":{
3591
- "type":"structure",
3592
- "members":{
3593
- "Message":{"shape":"string"}
3594
- },
3595
- "error":{"httpStatusCode":400},
3596
- "exception":true
3597
- },
3598
- "TooManyFieldLevelEncryptionFieldPatterns":{
3599
- "type":"structure",
3600
- "members":{
3601
- "Message":{"shape":"string"}
3602
- },
3603
- "error":{"httpStatusCode":400},
3604
- "exception":true
3605
- },
3606
- "TooManyFieldLevelEncryptionProfiles":{
3607
- "type":"structure",
3608
- "members":{
3609
- "Message":{"shape":"string"}
3610
- },
3611
- "error":{"httpStatusCode":400},
3612
- "exception":true
3613
- },
3614
- "TooManyFieldLevelEncryptionQueryArgProfiles":{
3615
- "type":"structure",
3616
- "members":{
3617
- "Message":{"shape":"string"}
3618
- },
3619
- "error":{"httpStatusCode":400},
3620
- "exception":true
3621
- },
3622
- "TooManyHeadersInForwardedValues":{
3623
- "type":"structure",
3624
- "members":{
3625
- "Message":{"shape":"string"}
3626
- },
3627
- "error":{"httpStatusCode":400},
3628
- "exception":true
3629
- },
3630
- "TooManyInvalidationsInProgress":{
3631
- "type":"structure",
3632
- "members":{
3633
- "Message":{"shape":"string"}
3634
- },
3635
- "error":{"httpStatusCode":400},
3636
- "exception":true
3637
- },
3638
- "TooManyLambdaFunctionAssociations":{
3639
- "type":"structure",
3640
- "members":{
3641
- "Message":{"shape":"string"}
3642
- },
3643
- "error":{"httpStatusCode":400},
3644
- "exception":true
3645
- },
3646
- "TooManyOriginCustomHeaders":{
3647
- "type":"structure",
3648
- "members":{
3649
- "Message":{"shape":"string"}
3650
- },
3651
- "error":{"httpStatusCode":400},
3652
- "exception":true
3653
- },
3654
- "TooManyOriginGroupsPerDistribution":{
3655
- "type":"structure",
3656
- "members":{
3657
- "Message":{"shape":"string"}
3658
- },
3659
- "error":{"httpStatusCode":400},
3660
- "exception":true
3661
- },
3662
- "TooManyOrigins":{
3663
- "type":"structure",
3664
- "members":{
3665
- "Message":{"shape":"string"}
3666
- },
3667
- "error":{"httpStatusCode":400},
3668
- "exception":true
3669
- },
3670
- "TooManyPublicKeys":{
3671
- "type":"structure",
3672
- "members":{
3673
- "Message":{"shape":"string"}
3674
- },
3675
- "error":{"httpStatusCode":400},
3676
- "exception":true
3677
- },
3678
- "TooManyQueryStringParameters":{
3679
- "type":"structure",
3680
- "members":{
3681
- "Message":{"shape":"string"}
3682
- },
3683
- "error":{"httpStatusCode":400},
3684
- "exception":true
3685
- },
3686
- "TooManyStreamingDistributionCNAMEs":{
3687
- "type":"structure",
3688
- "members":{
3689
- "Message":{"shape":"string"}
3690
- },
3691
- "error":{"httpStatusCode":400},
3692
- "exception":true
3693
- },
3694
- "TooManyStreamingDistributions":{
3695
- "type":"structure",
3696
- "members":{
3697
- "Message":{"shape":"string"}
3698
- },
3699
- "error":{"httpStatusCode":400},
3700
- "exception":true
3701
- },
3702
- "TooManyTrustedSigners":{
3703
- "type":"structure",
3704
- "members":{
3705
- "Message":{"shape":"string"}
3706
- },
3707
- "error":{"httpStatusCode":400},
3708
- "exception":true
3709
- },
3710
- "TrustedSignerDoesNotExist":{
3711
- "type":"structure",
3712
- "members":{
3713
- "Message":{"shape":"string"}
3714
- },
3715
- "error":{"httpStatusCode":400},
3716
- "exception":true
3717
- },
3718
- "TrustedSigners":{
3719
- "type":"structure",
3720
- "required":[
3721
- "Enabled",
3722
- "Quantity"
3723
- ],
3724
- "members":{
3725
- "Enabled":{"shape":"boolean"},
3726
- "Quantity":{"shape":"integer"},
3727
- "Items":{"shape":"AwsAccountNumberList"}
3728
- }
3729
- },
3730
- "UntagResourceRequest":{
3731
- "type":"structure",
3732
- "required":[
3733
- "Resource",
3734
- "TagKeys"
3735
- ],
3736
- "members":{
3737
- "Resource":{
3738
- "shape":"ResourceARN",
3739
- "location":"querystring",
3740
- "locationName":"Resource"
3741
- },
3742
- "TagKeys":{
3743
- "shape":"TagKeys",
3744
- "locationName":"TagKeys",
3745
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3746
- }
3747
- },
3748
- "payload":"TagKeys"
3749
- },
3750
- "UpdateCloudFrontOriginAccessIdentityRequest":{
3751
- "type":"structure",
3752
- "required":[
3753
- "CloudFrontOriginAccessIdentityConfig",
3754
- "Id"
3755
- ],
3756
- "members":{
3757
- "CloudFrontOriginAccessIdentityConfig":{
3758
- "shape":"CloudFrontOriginAccessIdentityConfig",
3759
- "locationName":"CloudFrontOriginAccessIdentityConfig",
3760
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3761
- },
3762
- "Id":{
3763
- "shape":"string",
3764
- "location":"uri",
3765
- "locationName":"Id"
3766
- },
3767
- "IfMatch":{
3768
- "shape":"string",
3769
- "location":"header",
3770
- "locationName":"If-Match"
3771
- }
3772
- },
3773
- "payload":"CloudFrontOriginAccessIdentityConfig"
3774
- },
3775
- "UpdateCloudFrontOriginAccessIdentityResult":{
3776
- "type":"structure",
3777
- "members":{
3778
- "CloudFrontOriginAccessIdentity":{"shape":"CloudFrontOriginAccessIdentity"},
3779
- "ETag":{
3780
- "shape":"string",
3781
- "location":"header",
3782
- "locationName":"ETag"
3783
- }
3784
- },
3785
- "payload":"CloudFrontOriginAccessIdentity"
3786
- },
3787
- "UpdateDistributionRequest":{
3788
- "type":"structure",
3789
- "required":[
3790
- "DistributionConfig",
3791
- "Id"
3792
- ],
3793
- "members":{
3794
- "DistributionConfig":{
3795
- "shape":"DistributionConfig",
3796
- "locationName":"DistributionConfig",
3797
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3798
- },
3799
- "Id":{
3800
- "shape":"string",
3801
- "location":"uri",
3802
- "locationName":"Id"
3803
- },
3804
- "IfMatch":{
3805
- "shape":"string",
3806
- "location":"header",
3807
- "locationName":"If-Match"
3808
- }
3809
- },
3810
- "payload":"DistributionConfig"
3811
- },
3812
- "UpdateDistributionResult":{
3813
- "type":"structure",
3814
- "members":{
3815
- "Distribution":{"shape":"Distribution"},
3816
- "ETag":{
3817
- "shape":"string",
3818
- "location":"header",
3819
- "locationName":"ETag"
3820
- }
3821
- },
3822
- "payload":"Distribution"
3823
- },
3824
- "UpdateFieldLevelEncryptionConfigRequest":{
3825
- "type":"structure",
3826
- "required":[
3827
- "FieldLevelEncryptionConfig",
3828
- "Id"
3829
- ],
3830
- "members":{
3831
- "FieldLevelEncryptionConfig":{
3832
- "shape":"FieldLevelEncryptionConfig",
3833
- "locationName":"FieldLevelEncryptionConfig",
3834
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3835
- },
3836
- "Id":{
3837
- "shape":"string",
3838
- "location":"uri",
3839
- "locationName":"Id"
3840
- },
3841
- "IfMatch":{
3842
- "shape":"string",
3843
- "location":"header",
3844
- "locationName":"If-Match"
3845
- }
3846
- },
3847
- "payload":"FieldLevelEncryptionConfig"
3848
- },
3849
- "UpdateFieldLevelEncryptionConfigResult":{
3850
- "type":"structure",
3851
- "members":{
3852
- "FieldLevelEncryption":{"shape":"FieldLevelEncryption"},
3853
- "ETag":{
3854
- "shape":"string",
3855
- "location":"header",
3856
- "locationName":"ETag"
3857
- }
3858
- },
3859
- "payload":"FieldLevelEncryption"
3860
- },
3861
- "UpdateFieldLevelEncryptionProfileRequest":{
3862
- "type":"structure",
3863
- "required":[
3864
- "FieldLevelEncryptionProfileConfig",
3865
- "Id"
3866
- ],
3867
- "members":{
3868
- "FieldLevelEncryptionProfileConfig":{
3869
- "shape":"FieldLevelEncryptionProfileConfig",
3870
- "locationName":"FieldLevelEncryptionProfileConfig",
3871
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3872
- },
3873
- "Id":{
3874
- "shape":"string",
3875
- "location":"uri",
3876
- "locationName":"Id"
3877
- },
3878
- "IfMatch":{
3879
- "shape":"string",
3880
- "location":"header",
3881
- "locationName":"If-Match"
3882
- }
3883
- },
3884
- "payload":"FieldLevelEncryptionProfileConfig"
3885
- },
3886
- "UpdateFieldLevelEncryptionProfileResult":{
3887
- "type":"structure",
3888
- "members":{
3889
- "FieldLevelEncryptionProfile":{"shape":"FieldLevelEncryptionProfile"},
3890
- "ETag":{
3891
- "shape":"string",
3892
- "location":"header",
3893
- "locationName":"ETag"
3894
- }
3895
- },
3896
- "payload":"FieldLevelEncryptionProfile"
3897
- },
3898
- "UpdatePublicKeyRequest":{
3899
- "type":"structure",
3900
- "required":[
3901
- "PublicKeyConfig",
3902
- "Id"
3903
- ],
3904
- "members":{
3905
- "PublicKeyConfig":{
3906
- "shape":"PublicKeyConfig",
3907
- "locationName":"PublicKeyConfig",
3908
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3909
- },
3910
- "Id":{
3911
- "shape":"string",
3912
- "location":"uri",
3913
- "locationName":"Id"
3914
- },
3915
- "IfMatch":{
3916
- "shape":"string",
3917
- "location":"header",
3918
- "locationName":"If-Match"
3919
- }
3920
- },
3921
- "payload":"PublicKeyConfig"
3922
- },
3923
- "UpdatePublicKeyResult":{
3924
- "type":"structure",
3925
- "members":{
3926
- "PublicKey":{"shape":"PublicKey"},
3927
- "ETag":{
3928
- "shape":"string",
3929
- "location":"header",
3930
- "locationName":"ETag"
3931
- }
3932
- },
3933
- "payload":"PublicKey"
3934
- },
3935
- "UpdateStreamingDistributionRequest":{
3936
- "type":"structure",
3937
- "required":[
3938
- "StreamingDistributionConfig",
3939
- "Id"
3940
- ],
3941
- "members":{
3942
- "StreamingDistributionConfig":{
3943
- "shape":"StreamingDistributionConfig",
3944
- "locationName":"StreamingDistributionConfig",
3945
- "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2018-11-05/"}
3946
- },
3947
- "Id":{
3948
- "shape":"string",
3949
- "location":"uri",
3950
- "locationName":"Id"
3951
- },
3952
- "IfMatch":{
3953
- "shape":"string",
3954
- "location":"header",
3955
- "locationName":"If-Match"
3956
- }
3957
- },
3958
- "payload":"StreamingDistributionConfig"
3959
- },
3960
- "UpdateStreamingDistributionResult":{
3961
- "type":"structure",
3962
- "members":{
3963
- "StreamingDistribution":{"shape":"StreamingDistribution"},
3964
- "ETag":{
3965
- "shape":"string",
3966
- "location":"header",
3967
- "locationName":"ETag"
3968
- }
3969
- },
3970
- "payload":"StreamingDistribution"
3971
- },
3972
- "ViewerCertificate":{
3973
- "type":"structure",
3974
- "members":{
3975
- "CloudFrontDefaultCertificate":{"shape":"boolean"},
3976
- "IAMCertificateId":{"shape":"string"},
3977
- "ACMCertificateArn":{"shape":"string"},
3978
- "SSLSupportMethod":{"shape":"SSLSupportMethod"},
3979
- "MinimumProtocolVersion":{"shape":"MinimumProtocolVersion"},
3980
- "Certificate":{
3981
- "shape":"string",
3982
- "deprecated":true
3983
- },
3984
- "CertificateSource":{
3985
- "shape":"CertificateSource",
3986
- "deprecated":true
3987
- }
3988
- }
3989
- },
3990
- "ViewerProtocolPolicy":{
3991
- "type":"string",
3992
- "enum":[
3993
- "allow-all",
3994
- "https-only",
3995
- "redirect-to-https"
3996
- ]
3997
- },
3998
- "boolean":{"type":"boolean"},
3999
- "integer":{"type":"integer"},
4000
- "long":{"type":"long"},
4001
- "string":{"type":"string"},
4002
- "timestamp":{"type":"timestamp"}
4003
- }
4004
- }